| java.lang.Object tcl.lang.ParseResult
ParseResult | class ParseResult (Code) | | This class stores a single word that's generated inside the Tcl parser
inside the Interp class.
|
Field Summary | |
int | nextIndex Points to the next character to be parsed. | TclObject | value The value of a parse operation. |
nextIndex | int nextIndex(Code) | | Points to the next character to be parsed.
|
value | TclObject value(Code) | | The value of a parse operation. For calls to Interp.intEval(),
this variable is the same as interp.m_result. The ref count
has been incremented, so the user will need to explicitly
invoke release() to drop the ref.
|
ParseResult | ParseResult()(Code) | | Create an empty parsed word.
|
ParseResult | ParseResult(TclObject o, int ni)(Code) | | Assume that the caller has already preserve()'ed the TclObject.
|
|
|