499500501502503504505506507
/** * Ident Arguments */ Rule Function() { return Sequence( Ident(), push(new FunctionNode(match())), Arguments(), peek(1).addChild(pop()) ); }
533534535536537538539540541542
return Sequence( Sequence( "progid:", OneOrMore(FirstOf('.', Ident())) ), push(new FunctionNode(match())), FilterArguments(), peek(1).addChild(pop()) ); }