Commit c5cee893 authored by Matthew Dawson's avatar Matthew Dawson
Browse files

Remove test grammar, it is junk now.

Useful for testing, not anymore.


git-svn-id: https://groke.mcmaster.ca/svn/grad/colin/branches/TableTool_javization@9673 57e6efec-57d4-0310-aeb1-a6c144bb1a8b
parent 0856ff05
Loading
Loading
Loading
Loading
+0 −6
Original line number Diff line number Diff line

// Define a grammar called Hello
grammar Hello;
r  : 'hello' ID ;         // match keyword hello followed by an identifier
ID : [a-z]+ ;             // match lower-case identifiers
WS : [ \t\r\n]+ -> skip ; // skip spaces, tabs, newlines