资 源 简 介
The project fika-ha is a transforming tool which takes a modular grammar and converts it to a classic monolithic one. The output can be used by parser generator to make a parser of given modular grammar.
How to compile fika-ha
Command Line Syntax
Input Format
Semantic Errors
Unsolved problems
New Ideas
Output of fika-ha
```
module A {
x -> "x";
y -> "y";
}
module B {
import A
rename x as tmp
rename y as x
rename tmp as y;
}
```