Пример #1
0
        protected override void finish()
        {
            if (!(getCommandResultJSONKey().Equals("ClientMatchCommand")))
            {
                throw new Exception("The key field has a value other than `ClientMatchCommand'.");
            }
            ClientMatchCommandJSON result = new ClientMatchCommandJSON();

            Debug.Assert(result != null);
            finish(result);
            int extra_count = unknownFieldGenerator.field_names.Count;

            Debug.Assert(extra_count == unknownFieldGenerator.field_values.Count);
            for (int extra_num = 0; extra_num < extra_count; ++extra_num)
            {
                result.extraClientMatchCommandAppendPair(unknownFieldGenerator.field_names[extra_num], unknownFieldGenerator.field_values[extra_num]);
            }
            unknownFieldGenerator.field_names.Clear();
            unknownFieldGenerator.field_values.Clear();
            unknownFieldGenerator.index = new Dictionary <string, JSONValue>();
            handle_result(result);
        }
Пример #2
0
 protected void finish(ClientMatchCommandJSON result)
 {
     if (fieldGeneratorResult.have_value)
     {
         result.setResult(fieldGeneratorResult.value);
         fieldGeneratorResult.have_value = false;
     }
     else if ((!(result.hasResult())) && !allow_incomplete)
     {
         error("When parsing the object for %what%, the \"Result\" field was missing.");
     }
     if (fieldGeneratorNativeData.have_value)
     {
         result.setNativeData(fieldGeneratorNativeData.value);
         fieldGeneratorNativeData.have_value = false;
     }
     if (fieldGeneratorMatchedItem.have_value)
     {
         result.setMatchedItem(fieldGeneratorMatchedItem.value);
         fieldGeneratorMatchedItem.have_value = false;
     }
     base.finish(result);
 }
Пример #3
0
 protected override void handle_result(ClientMatchCommandJSON result)
 {
     top.value.Add(result);
 }
Пример #4
0
        protected override void handle_result(ClientMatchCommandJSON result)
        {
//@@@            Debug.Assert(!have_value);
            have_value = true;
            value      = result;
        }
Пример #5
0
 protected abstract void handle_result(ClientMatchCommandJSON new_result);