Skip to content

Instantly share code, notes, and snippets.

@xeno-by
Created June 6, 2014 14:37
Show Gist options
  • Save xeno-by/2057ab2971c6e9411540 to your computer and use it in GitHub Desktop.
Save xeno-by/2057ab2971c6e9411540 to your computer and use it in GitHub Desktop.
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