pike.git
/
lib
/
modules
/
Search.pmod
/
Grammar.pmod
/
Parser.pmod
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/lib/modules/Search.pmod/Grammar.pmod/Parser.pmod:1:
-
inherit .Lexer;
+
inherit
Search
.
Grammar.
Lexer;
#include "debug.h" class ParseNode { string op = "<node>"; array(ParseNode) children = ({}); void addChild(ParseNode n) { if (n) children += ({ n }); } static string indentArray(array(string) stuff, string indent) { return map(stuff,