Skip to content

Commit

Permalink
moving structural aspects of Rascal/MegaL framework to a dedicated di…
Browse files Browse the repository at this point in the history
…rectory
  • Loading branch information
grammarware committed Oct 3, 2012
1 parent 7950f10 commit 9f8808b
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions topics/mega/src/MegaImplode.rsc
@@ -1,8 +1,8 @@
@contributor{Vadim Zaytsev - vadim@grammarware.net - SWAT, CWI}
module MegaImplode

import MegaADT;
import MegaGrammar;
import structure::MegaADT;
import structure::MegaGrammar;
import IO;
import ParseTree;
import String;
Expand Down
2 changes: 1 addition & 1 deletion topics/mega/src/MegaParser.rsc
@@ -1,7 +1,7 @@
@contributor{Vadim Zaytsev - vadim@grammarware.net - SWAT, CWI}
module MegaParser

import MegaGrammar;
import structure::MegaGrammar;
import Ambiguity;
import ParseTree;
import String;
Expand Down
2 changes: 1 addition & 1 deletion topics/mega/src/Plugin.rsc
@@ -1,7 +1,7 @@
@contributor{Vadim Zaytsev - vadim@grammarware.net - SWAT, CWI}
module Plugin

import MegaGrammar;
import structure::MegaGrammar;

import util::IDE;
import ParseTree;
Expand Down
@@ -1,5 +1,5 @@
@contributor{Vadim Zaytsev - vadim@grammarware.net - SWAT, CWI}
module MegaADT
module structure::MegaADT

data AMegaModel = megamodel(str name, str desc, list[str] incs, list[MegaDeclaration] decls, list[MegaRelation] rels);
data MegaDeclaration
Expand Down
@@ -1,5 +1,5 @@
@contributor{Vadim Zaytsev - vadim@grammarware.net - SWAT, CWI}
module MegaGrammar
module structure::MegaGrammar

start syntax MegaModel = MegaDesc? MegaHeader MegaInclude* MegaDecl+;
syntax MegaHeader = "megamodel" MegaURI name MegaDot;
Expand Down

0 comments on commit 9f8808b

Please sign in to comment.