/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

  1. import Statement, Type
  2. Expression: abstract class extends Statement {
  3. type: Type {
  4. get {
  5. getType()
  6. }
  7. }
  8. /** to be implemented by subclassing fuckers */
  9. getType: abstract func -> Type
  10. }