App Engine Python SDK  v1.6.9 rev.445
The Python runtime is available as an experimental Preview feature.
Variables
google.appengine._internal.antlr3.constants Namespace Reference

Variables

int EOF = -1
 
int DEFAULT_CHANNEL = 0
 All tokens go to the parser (unless skip() is called in that rule) on a particular "channel". More...
 
int HIDDEN_CHANNEL = 99
 Anything on different channel than DEFAULT_CHANNEL is not parsed by parser. More...
 
int EOR_TOKEN_TYPE = 1
 
int DOWN = 2
 imaginary tree navigation type; traverse "get child" link
 
int UP = 3
 imaginary tree navigation type; finish with a child list
 
int MIN_TOKEN_TYPE = UP+1
 
int INVALID_TOKEN_TYPE = 0
 

Detailed Description

ANTLR3 runtime package

Variable Documentation

int google.appengine._internal.antlr3.constants.DEFAULT_CHANNEL = 0

All tokens go to the parser (unless skip() is called in that rule) on a particular "channel".

The parser tunes to a particular channel so that whitespace etc... can go to the parser on a "hidden" channel.

int google.appengine._internal.antlr3.constants.HIDDEN_CHANNEL = 99

Anything on different channel than DEFAULT_CHANNEL is not parsed by parser.