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