Beispiel #1
0
        private static Pair <String, Object> WalkValuePair(EsperEPL2GrammarParser.ElementValuePairEnumContext ctx, EngineImportService engineImportService)
        {
            var name  = ctx.i.Text;
            var value = WalkValue(ctx.elementValueEnum(), engineImportService);

            return(new Pair <String, Object>(name, value));
        }
Beispiel #2
0
 private static Pair<string, object> WalkValuePair(
     EsperEPL2GrammarParser.ElementValuePairEnumContext ctx,
     ImportServiceCompileTime importService)
 {
     var name = ctx.keywordAllowedIdent().GetText();
     var value = WalkValue(ctx.elementValueEnum(), importService);
     return new Pair<string, object>(name, value);
 }
Beispiel #3
0
        private static Pair <string, Object> WalkValuePair(
            EsperEPL2GrammarParser.ElementValuePairEnumContext ctx,
            EngineImportService engineImportService)
        {
            string name  = ctx.keywordAllowedIdent().GetText();
            Object value = WalkValue(ctx.elementValueEnum(), engineImportService);

            return(new Pair <string, Object>(name, value));
        }