Miksilo icon indicating copy to clipboard operation
Miksilo copied to clipboard

The fastest way to build a language

Results 35 Miksilo issues
Sort by recently updated
recently updated
newest added

First something unrelated to Delta's: ```scala trait Language[Program] { def syntax: Syntax[Program] def semantics: Semantics[Program] } trait Pipeline[In, Core, Out] { def language: Language[Core] def inputSyntax: Syntax[In] def outputSyntax: Syntax[Out]...

modular-compilation

Enable defining delta's like this: ```scala trait Compilation { def visit(action: T => ()) { } def getFactory: T } trait BlockStatementFactory { def create(statements: Seq[Node]): BlockStatement } trait BlockStatement...

modular-compilation