
|
If you were logged in you would be able to see more operations.
|
|
|
| Resolution Date: |
12/Aug/05 07:02 AM
|
|
The Filter grammar contains an invalid production rule, in respect with RFC 2254 :
item returns [LeafNode node]
{
node = null;
}
: node=simple | node=extensible |
( COLONEQUALS
...
COLONEQUALS is not valid. The RHS should be :
: node=simple | node=extensible
|
|
Description
|
The Filter grammar contains an invalid production rule, in respect with RFC 2254 :
item returns [LeafNode node]
{
node = null;
}
: node=simple | node=extensible |
( COLONEQUALS
...
COLONEQUALS is not valid. The RHS should be :
: node=simple | node=extensible
|
Show » |
|
item returns [LeafNode node]
{
node = null;
}
: node=simple | node=extensible |
( COLONEQUALS
{
selector.select( valueLexer );
String value = ( ( String ) valueParser.value( null ) ).trim();
node = new ExtensibleNode( null, value, null, false );
}
)
;