Пример #1
0
 protected void finish(ExplicitPropertyDerivationJSON result)
 {
     if (fieldGeneratorBase.have_value)
     {
         result.setBase(fieldGeneratorBase.value);
         fieldGeneratorBase.have_value = false;
     }
     else if ((!(result.hasBase())) && !allow_incomplete)
     {
         error("When parsing the object for %what%, the \"Base\" field was missing.");
     }
     if (fieldGeneratorProperty.have_value)
     {
         result.setProperty(fieldGeneratorProperty.value);
         fieldGeneratorProperty.have_value = false;
     }
     else if ((!(result.hasProperty())) && !allow_incomplete)
     {
         error("When parsing the object for %what%, the \"Property\" field was missing.");
     }
     base.finish(result);
 }
Пример #2
0
        protected override void finish()
        {
            if (!(getDerivationJSONKey().Equals("ExplicitPropertyDerivation")))
            {
                throw new Exception("The key field has a value other than `ExplicitPropertyDerivation'.");
            }
            ExplicitPropertyDerivationJSON result = new ExplicitPropertyDerivationJSON();

            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.extraExplicitPropertyDerivationAppendPair(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(ExplicitPropertyDerivationJSON result)
 {
     top.value.Add(result);
 }
Пример #4
0
        protected override void handle_result(ExplicitPropertyDerivationJSON result)
        {
//@@@            Debug.Assert(!have_value);
            have_value = true;
            value      = result;
        }
Пример #5
0
 protected abstract void handle_result(ExplicitPropertyDerivationJSON new_result);