Skip to content

Commit 79fb5d9

Browse files
authored
Merge pull request #1 from jcaillon/master
version 1133, fixes oehive#7, SERIALIZE-HIDDEN in dataset definition no longer triggers an exception
2 parents de5c42c + da3181a commit 79fb5d9

File tree

6 files changed

+7
-3
lines changed

6 files changed

+7
-3
lines changed

build.number

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
#Mon Mar 07 23:00:00 PDT 2016
2-
build.number=1132
2+
build.number=1133

build/build.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@
1010
5. paste the file in the temporary directory
1111

1212
6. open a command prompt on that directory
13-
7. use this command line "ikvmc.exe -out:proparse.net.dll -keyfile:proparse.snk -version:4.0.1.1130 proparse-1.0.jar .\lib\*"
13+
7. use this command line "ikvmc.exe -out:proparse.net.dll -keyfile:proparse.snk -version:4.0.1.1133 proparse-1.0.jar .\lib\*"
1414

1515
8. enjoy!

src/main/antlr/JPTreeParser.g

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1406,6 +1406,7 @@ definedatasetstate
14061406
: #( DEFINE (def_shared)? def_modifiers DATASET ID
14071407
(namespace_uri)? (namespace_prefix)? (xml_node_name)?
14081408
( #(SERIALIZENAME QSTRING) )?
1409+
(SERIALIZEHIDDEN)?
14091410
(REFERENCEONLY)?
14101411
FOR RECORD_NAME (COMMA RECORD_NAME)*
14111412
( data_relation ( (COMMA)? data_relation)* )?

src/main/antlr/TreeParser01.g

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -674,6 +674,7 @@ definedatasetstate
674674
id:ID { push(action.defineSymbol(DATASET, #def, #id)); }
675675
(namespace_uri)? (namespace_prefix)? (xml_node_name)?
676676
( #(SERIALIZENAME QSTRING) )?
677+
(SERIALIZEHIDDEN)?
677678
(REFERENCEONLY)?
678679
FOR tb1:tbl[CQ.INIT] {action.datasetTable(#tb1);}
679680
(COMMA tb2:tbl[CQ.INIT] {action.datasetTable(#tb2);} )*

src/main/antlr/proparse.g

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1996,6 +1996,7 @@ button_opt
19961996
definedatasetstate
19971997
: DATASET identifier
19981998
(namespace_uri)? (namespace_prefix)? (xml_node_name)? (serialize_name)?
1999+
(SERIALIZEHIDDEN)?
19992000
(REFERENCEONLY)?
20002001
FOR record (COMMA record)*
20012002
(data_relation ( (COMMA)? data_relation)* )?

src/main/java/org/prorefactor/core/TokenTypes.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1192,7 +1192,8 @@ private static void assignDefaultText() {
11921192
allTokens[DYNAMICCAST].keywordText = "DYNAMIC-CAST";
11931193
allTokens[XMLNODENAME].keywordText = "XML-NODE-NAME";
11941194
allTokens[FOREIGNKEYHIDDEN].keywordText = "FOREIGN-KEY-HIDDEN";
1195-
1195+
allTokens[SERIALIZEHIDDEN].keywordText = "SERIALIZE-HIDDEN";
1196+
11961197
// Mike Fechner / Consultingwerk Ltd.
11971198
allTokens[BLOCKLEVEL].keywordText = "BLOCK-LEVEL";
11981199
allTokens[GETCLASS].keywordText = "GET-CLASS";

0 commit comments

Comments
 (0)