Class Parser
Parses a string according to the rules of the Parser grammar.
Inherited Members
Namespace: Platform.Protocols.Lino
Assembly: Platform.Protocols.Lino.dll
Syntax
public class Parser
Methods
| Edit this page View SourceParse(string, string)
Parses a string according to the rules of the Parser grammar.
Declaration
public IList<Link<string>> Parse(string subject, string fileName = null)
Parameters
Type | Name | Description |
---|---|---|
string | subject | The parsing subject. |
string | fileName | The optional file name to use in error messages. |
Returns
Type | Description |
---|---|
IList<Link<string>> | The IList<Link<string>> parsed from |
Exceptions
Type | Condition |
---|---|
FormatException | Thrown when parsing fails against will be set with the cursor where the fatal error occurred.
|