Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
SparqlParserBase.cs
2
4{
9 {
14 {
15 }
16
20 public string KeyWord => "BASE";
21
25 public string[] Aliases => null;
26
31
38 public bool TryParse(ScriptParser Parser, out ScriptNode Result)
39 {
41 return SparqlParser.TryParse(Parser, out Result);
42 }
43 }
44}
Base class for all nodes in a parsed script tree.
Definition: ScriptNode.cs:69
Script parser, for custom parsers.
Definition: ScriptParser.cs:10
Parses a SPARQL statement that begins with the BASE keyword.
SparqlParserBase()
Parses a SPARQL statement that begins with the BASE keyword.
string[] InternalKeywords
Any keywords used internally by the custom parser.
string KeyWord
Keyword associated with custom parser.
string[] Aliases
Keyword aliases, if available, null if none.
bool TryParse(ScriptParser Parser, out ScriptNode Result)
Tries to parse a script node.
string[] InternalKeywords
Any keywords used internally by the custom parser.
static readonly SparqlParser RefInstance
Reference instance of SPARQL parser.
Definition: SparqlParser.cs:43
bool TryParse(ScriptParser Parser, out ScriptNode Result)
Tries to parse a script node.
Interface for keywords with custom parsing.
Definition: IKeyWord.cs:9