Package Bio :: Module Decode :: Class DecodeParser
[hide private]
[frames] | no frames]

Class DecodeParser

source code

Parsers.spark.GenericParser --+
                              |
                             DecodeParser

Instance Methods [hide private]
 
__init__(self, start='expression') source code
 
p_expression(self, args)
expression ::= term expression ::= term pipe expression
source code
 
p_term(self, args)
term ::= functionname term ::= functionname open_paren args close_paren
source code
 
p_args(self, args)
args ::= arg args ::= arg comma args
source code
 
p_arg(self, args)
arg ::= string arg ::= integer arg ::= float
source code

Inherited from Parsers.spark.GenericParser: addRule, ambiguity, augment, buildState, buildTree, buildTree_r, collectRules, error, makeFIRST, parse, preprocess, resolve, typestring

Class Variables [hide private]

Inherited from Parsers.spark.GenericParser (private): _EOF, _START

Method Details [hide private]

__init__(self, start='expression')
(Constructor)

source code 
Overrides: Parsers.spark.GenericParser.__init__