Method |
Description |
|
DataStatementToXmlElement ( XmlDocument doc, NPLLex ls ) : XmlElement |
Parse: name = data | table Basically, there is only one statement like msg = {...} in a web service or NPL activation call. |
|
FillDataToXmlElement ( XmlDocument doc, NPLLex ls, XmlElement ParentNode ) : bool |
Parse: data | table NPL uses a similar element name for basic data types as in soap and xml/rpc Supported NPL types are table, boolean, string, double, index, nil. e.g. the NPL table msg={x=2, [1]="string value",OK=true} will be serialized to following table. 2 string value true the input NPL table key name better not be the above name to avoid confusion. |
|
IsIdentifier ( string input ) : bool |
|
|
NPLCodeToXmlElement ( string npl_code ) : XmlElement |
converting from NPL code to xml element |
|
check ( NPLLex ls, int c ) : void |
|
|
check_match ( NPLLex ls, int what, int who, int where ) : void |
|
|
enterlevel ( NPLLex ls ) : void |
|
|
error_expected ( NPLLex ls, int token ) : void |
|
|
leavelevel ( NPLLex ls ) : void |
|
|
lookahead ( NPLLex ls ) : void |
|
|
next ( NPLLex ls ) : void |
|
|
testnext ( NPLLex ls, int c ) : int |
|
|