Changeset 35287 in osm for applications/editors/josm/plugins/comfort0
- Timestamp:
- 2020-01-13T21:45:22+01:00 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/comfort0/src/net/simon04/comfort0/level0l/Level0LParser.jj
r35286 r35287 29 29 30 30 <COMMENT> 31 SKIP: { < ~[ ] > }31 SKIP: { < ~["\n", "\r"] > } 32 32 33 33 <COMMENT> … … 70 70 lon=<FLOAT> 71 71 { r.setCoor(new LatLon(Double.parseDouble(lat.image), Double.parseDouble(lon.image))); } 72 ( <COMMENT_START> | <H_EOL> )72 ( <COMMENT_START> <C_EOL> | <H_EOL> ) 73 73 ( <D_SPACE> <D_SPACE> tag(r) )* 74 74 { return r; } … … 85 85 id=<H_ID> 86 86 { r.setId(Long.parseLong(id.image)); } 87 ( <COMMENT_START> | <H_EOL> )87 ( <COMMENT_START> <C_EOL> | <H_EOL> ) 88 88 way_data(r) 89 89 { return r; } … … 109 109 { r.getNodeIds().add(Long.parseLong(id.image)); } 110 110 ( <D_SPACE> )* 111 ( <D_COMMENT_START> | <D_EOL> )111 ( <D_COMMENT_START> <C_EOL> | <D_EOL> ) 112 112 } 113 113
Note:
See TracChangeset
for help on using the changeset viewer.