Created
June 6, 2014 14:37
-
-
Save xeno-by/2057ab2971c6e9411540 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class ReflectCompilationUnit { | |
type Icode | |
def icodes: List[Icode] = Nil | |
} | |
class CompilerCompilationUnit extends ReflectCompilationUnit { | |
type Icode = compiler.Icode | |
override val icodes: List[Icode] = ... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment