示例#1
0
 protected void finish(ShowMapQueryStateJSON result)
 {
     if (fieldGeneratorMapLocationSpecs.have_value)
     {
         result.initMapLocationSpecs();
         int count = fieldGeneratorMapLocationSpecs.value.Count;
         for (int num = 0; num < count; ++num)
         {
             result.appendMapLocationSpecs(fieldGeneratorMapLocationSpecs.value[num]);
         }
         fieldGeneratorMapLocationSpecs.value.Clear();
         fieldGeneratorMapLocationSpecs.have_value = false;
     }
     else if ((!(result.hasMapLocationSpecs())) && !allow_incomplete)
     {
         error("When parsing the object for %what%, the \"MapLocationSpecs\" field was missing.");
     }
 }
示例#2
0
        protected override void finish()
        {
            ShowMapQueryStateJSON result = new ShowMapQueryStateJSON();

            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.extraShowMapQueryStateAppendPair(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);
        }
示例#3
0
 protected override void handle_result(ShowMapQueryStateJSON result)
 {
     top.value.Add(result);
 }
示例#4
0
        protected override void handle_result(ShowMapQueryStateJSON result)
        {
//@@@            Debug.Assert(!have_value);
            have_value = true;
            value      = result;
        }
示例#5
0
 protected abstract void handle_result(ShowMapQueryStateJSON new_result);