Changeset 6513 in josm for trunk/src/org/openstreetmap/josm/gui/mappaint/mapcss/MapCSSParser.jj
- Timestamp:
- 2013-12-23T00:13:58+01:00 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/mappaint/mapcss/MapCSSParser.jj
r6455 r6513 345 345 boolean not = false; 346 346 boolean yes = false; 347 boolean no = false; 347 348 String key; 348 349 } … … 350 351 ( <EXCLAMATION> { not = true; } )? 351 352 key=tag_key() 353 ( LOOKAHEAD(2) <QUESTION> <EXCLAMATION> { no = true; } )? 352 354 ( <QUESTION> { yes = true; } )? 353 { return Condition.create(key, not, yes, context); } 355 { return Condition.create(key, not, yes, no, context); } 354 356 } 355 357
Note:
See TracChangeset
for help on using the changeset viewer.