blob: 7aee298ddc68f5118583d1d81d08941cf2d70e8f [file] [log] [blame]
grammar me.dollyn.goide.Golang with org.eclipse.xtext.xbase.Xbase
generate golang "http://www.dollyn.me/goide/Golang"
GoModel:
package = ID
imports += Import*
;
Import:
'import' package=STRING
;
terminal decimal_digit : "0" .. "9" .;
terminal octal_digit : "0" .. "7" .;
terminal hex_digit : "0" .. "9" | "A".. "F" | "a" .. "f" .;