summaryrefslogtreecommitdiff
path: root/src/tests/eolian/data/base.eo
blob: 3b701b5b068d90a049c7b4336fc2eb3c420a74e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
class Base {
   properties {
      z {
           values {
                int a;
                char b;
                float c;
           }
      }
   }
   methods {
      constructor {
      }
      destructor {
      }
   }
   implements {
      @virtual .constructor;
   }
   constructors {
      .constructor;
   }
}