@lbdudc/gp-gis-dsl 0.2.1 → 0.2.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -14,47 +14,48 @@ MAPPEDBY_SYMBOL=13
14
14
  LAYER_SYMBOL=14
15
15
  TILE_SYMBOL=15
16
16
  GEOJSON_SYMBOL=16
17
- AS_SYMBOL=17
18
- URL_SYMBOL=18
19
- SLD_SYMBOL=19
20
- EDITABLE_SYMBOL=20
21
- FILL_COLOR_SYMBOL=21
22
- STROKE_COLOR_SYMBOL=22
23
- FILL_OPACITY_SYMBOL=23
24
- STROKE_OPACITY_SYMBOL=24
25
- WMS_SYMBOL=25
26
- STYLE_SYMBOL=26
27
- IS_BASE_LAYER_SYMBOL=27
28
- HIDDEN_SYMBOL=28
29
- SORTABLE_SYMBOL=29
30
- MAP_SYMBOL=30
31
- SET_SYMBOL=31
32
- DEPLOYMENT_SYMBOL=32
33
- ZERO_ONE_SYMBOL=33
34
- ONE_ONE_SYMBOL=34
35
- ZERO_MANY_SYMBOL=35
36
- ONE_MANY_SYMBOL=36
37
- TYPE=37
38
- POUND_SYMBOL=38
39
- DOT_SYMBOL=39
40
- OPAR_SYMBOL=40
41
- CPAR_SYMBOL=41
42
- COMMA_SYMBOL=42
43
- SCOL_SYMBOL=43
44
- HEX_COLOR=44
45
- INT_NUMBER=45
46
- FLOAT_NUMBER=46
47
- COMMENT=47
48
- WHITESPACE=48
49
- IDENTIFIER=49
50
- QUOTED_TEXT=50
51
- '0..1'=33
52
- '1..1'=34
53
- '0..*'=35
54
- '1..*'=36
55
- '#'=38
56
- '.'=39
57
- '('=40
58
- ')'=41
59
- ','=42
60
- ';'=43
17
+ GEOMETRY_TYPE_SYMBOL=17
18
+ AS_SYMBOL=18
19
+ URL_SYMBOL=19
20
+ SLD_SYMBOL=20
21
+ EDITABLE_SYMBOL=21
22
+ FILL_COLOR_SYMBOL=22
23
+ STROKE_COLOR_SYMBOL=23
24
+ FILL_OPACITY_SYMBOL=24
25
+ STROKE_OPACITY_SYMBOL=25
26
+ WMS_SYMBOL=26
27
+ STYLE_SYMBOL=27
28
+ IS_BASE_LAYER_SYMBOL=28
29
+ HIDDEN_SYMBOL=29
30
+ SORTABLE_SYMBOL=30
31
+ MAP_SYMBOL=31
32
+ SET_SYMBOL=32
33
+ DEPLOYMENT_SYMBOL=33
34
+ ZERO_ONE_SYMBOL=34
35
+ ONE_ONE_SYMBOL=35
36
+ ZERO_MANY_SYMBOL=36
37
+ ONE_MANY_SYMBOL=37
38
+ TYPE=38
39
+ POUND_SYMBOL=39
40
+ DOT_SYMBOL=40
41
+ OPAR_SYMBOL=41
42
+ CPAR_SYMBOL=42
43
+ COMMA_SYMBOL=43
44
+ SCOL_SYMBOL=44
45
+ HEX_COLOR=45
46
+ INT_NUMBER=46
47
+ FLOAT_NUMBER=47
48
+ COMMENT=48
49
+ WHITESPACE=49
50
+ IDENTIFIER=50
51
+ QUOTED_TEXT=51
52
+ '0..1'=34
53
+ '1..1'=35
54
+ '0..*'=36
55
+ '1..*'=37
56
+ '#'=39
57
+ '.'=40
58
+ '('=41
59
+ ')'=42
60
+ ','=43
61
+ ';'=44
@@ -1,4 +1,4 @@
1
- // Generated from grammar/GISGrammar.g4 by ANTLR 4.13.0
1
+ // Generated from grammar/GISGrammar.g4 by ANTLR 4.13.1
2
2
  // jshint ignore: start
3
3
  import antlr4 from 'antlr4';
4
4
 
@@ -77,6 +77,15 @@ export default class GISGrammarListener extends antlr4.tree.ParseTreeListener {
77
77
  }
78
78
 
79
79
 
80
+ // Enter a parse tree produced by GISGrammarParser#sldCustomBody.
81
+ enterSldCustomBody(ctx) {
82
+ }
83
+
84
+ // Exit a parse tree produced by GISGrammarParser#sldCustomBody.
85
+ exitSldCustomBody(ctx) {
86
+ }
87
+
88
+
80
89
  // Enter a parse tree produced by GISGrammarParser#createWmsStyle.
81
90
  enterCreateWmsStyle(ctx) {
82
91
  }
@@ -266,5 +275,14 @@ export default class GISGrammarListener extends antlr4.tree.ParseTreeListener {
266
275
  }
267
276
 
268
277
 
278
+ // Enter a parse tree produced by GISGrammarParser#intNumber.
279
+ enterIntNumber(ctx) {
280
+ }
281
+
282
+ // Exit a parse tree produced by GISGrammarParser#intNumber.
283
+ exitIntNumber(ctx) {
284
+ }
285
+
286
+
269
287
 
270
288
  }