Skip to content
Snippets Groups Projects
Commit 9114df63 authored by Kristof Szabados's avatar Kristof Szabados
Browse files

Bug 515564: create syntactical structure for parsing new language syntax, but not store read data.


Signed-off-by: default avatarKristof Szabados <Kristof.Szabados@ericsson.com>
parent 3f2c7f6c
No related branches found
No related tags found
No related merge requests found
......@@ -2087,7 +2087,17 @@ GlobalModuleId: // 5
optLanguageSpec:
/* empty */ { $$ = NULL; }
| LanguageKeyword FreeText { $$ = $2; } // sort-of 7 LanguageSpec
| LanguageKeyword FreeText optPackageNameList { $$ = $2; } // sort-of 7 LanguageSpec
;
optPackageNameList:
/* empty */
| PackageNameList
;
PackageNameList:
',' FreeText
| PackageNameList ',' FreeText
;
ModuleBody:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment