Created
June 26, 2014 06:39
-
-
Save szarnekow/ea256af86126b9718627 to your computer and use it in GitHub Desktop.
Multiple inheritance in Xtext
This file contains 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
A: // not necessarily called anywhere | |
SomeA | AB | |
; | |
B: // not necessarily called anywhere | |
SomeB | AB | |
; | |
AB: | |
a='a' b='b' | |
; | |
SomeA: | |
a='a' | |
; | |
SomeB: | |
b='b' | |
; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment