/source/core/ast/Expression.ooc
http://github.com/nddrylliog/oc · Unknown · 16 lines · 10 code · 6 blank · 0 comment · 0 complexity · 513a7d17df1965d8f7defdd7fa9e7516 MD5 · raw file
- import Statement, Type
- Expression: abstract class extends Statement {
- type: Type {
- get {
- getType()
- }
- }
- /** to be implemented by subclassing fuckers */
- getType: abstract func -> Type
- }