Skip to content

Instantly share code, notes, and snippets.

@stefan-langenmaier
stefan-langenmaier / ObjectiveCwithSyntacticPredicates
Created April 25, 2012 11:03
ObjectiveC grammar with Syntactic Predicates and without backtracking
grammar com.onevision.ovde.objectivec.ObjectiveC with org.eclipse.xtext.common.Terminals
generate objectiveC "http://www.example.com/ovde/objectivec/ObjectiveC"
Model:
elements+=external_declaration*;
external_declaration:
ML_COMMENT | SL_COMMENT | preprocessor_declaration
|function_definition
@stefan-langenmaier
stefan-langenmaier / ObjectiveCwithSyntacticPredicates
Created April 25, 2012 10:58
ObjectiveC grammar with Syntactic Predicates and without backtracking
/**
* ObjectiveC version 2
* based on an LL ansic grammars and
* and ObjectiveC grammar found in Learning Object C
*
* It's a Work in progress, most of the .h file can be parsed
* June 2008 Cedric Cuche
**/
grammar ObjectiveCwithSyntacticPredicates;