Changeset 35286 in osm for applications/editors
- Timestamp:
- 2020-01-13T21:45:20+01:00 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/comfort0/src/net/simon04/comfort0/level0l/Level0LParser.jj
r35285 r35286 71 71 { r.setCoor(new LatLon(Double.parseDouble(lat.image), Double.parseDouble(lon.image))); } 72 72 ( <COMMENT_START> | <H_EOL> ) 73 ( tag(r) )*73 ( <D_SPACE> <D_SPACE> tag(r) )* 74 74 { return r; } 75 75 } … … 93 93 {} 94 94 { 95 LOOKAHEAD(3)96 ( way_node(r) way_data(r) ) // TODO avoid recursive call to way_data97 |98 ( tag(r))*95 ( 96 <D_SPACE> <D_SPACE> 97 ( way_node(r) | tag(r) ) 98 )* 99 99 } 100 100 … … 104 104 } 105 105 { 106 <D_SPACE> <D_SPACE>107 106 <ND> 108 107 ( <D_SPACE> )+ … … 118 117 } 119 118 { 120 <D_SPACE> <D_SPACE>121 119 k=<IDENT> 122 120 ( <D_SPACE> ) *
Note:
See TracChangeset
for help on using the changeset viewer.