Esempio n. 1
0
 public override Task<object> QuotedString(StringLiteral stringLiteral)
 {
     var res = this[stringLiteral.Value];
     return Task.FromResult(res);
 }
Esempio n. 2
0
 public abstract Task<object> QuotedString(StringLiteral stringLiteral);
Esempio n. 3
0
 public override Task<object> QuotedString(StringLiteral stringLiteral)
 {
     throw new NotImplementedException();
 }
Esempio n. 4
0
 public override Task<object> QuotedString(StringLiteral stringLiteral)
 {
     var res = stringLiteral.Value;
     return Task.FromResult((object) res);
 }