Exemple #1
0
        protected override void finish()
        {
            if (!(keyGenerator.have_value))
            {
                throw new Exception("The `NuggetIntentKind' field is missing.");
            }
            InformationNuggetIntentJSON result = createForKey(keyGenerator.value, unknownFieldGenerator.index);

            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.extraInformationNuggetIntentAppendPair(unknownFieldGenerator.field_names[extra_num], unknownFieldGenerator.field_values[extra_num]);
            }
            unknownFieldGenerator.field_names.Clear();
            unknownFieldGenerator.field_values.Clear();
            unknownFieldGenerator.index = new Dictionary <string, JSONValue>();
            if (!allow_incomplete)
            {
                string missing_field_error = result.missing_field_error(allow_unpolished);
                if (missing_field_error != null)
                {
                    error(missing_field_error);
                }
            }
            handle_result(result);
        }
Exemple #2
0
    private void  fromJSONInformationNuggets(JSONValue json_value, bool ignore_extras)
    {
        Debug.Assert(json_value != null);
        JSONArrayValue json_array1 = json_value.array_value();

        if (json_array1 == null)
        {
            throw new Exception("The value for field InformationNuggets of InformationIntentJSON is not an array.");
        }
        int count1 = json_array1.componentCount();

        if (count1 < 1)
        {
            throw new Exception("The value for field InformationNuggets of InformationIntentJSON has too few elements.");
        }
        List <InformationNuggetIntentJSON> vector_InformationNuggets1 = new List <InformationNuggetIntentJSON>(count1);

        for (int num1 = 0; num1 < count1; ++num1)
        {
            InformationNuggetIntentJSON convert_classy = InformationNuggetIntentJSON.from_json(json_array1.component(num1), ignore_extras, true);
            vector_InformationNuggets1.Add(convert_classy);
        }
        Debug.Assert(vector_InformationNuggets1.Count >= 1);
        initInformationNuggets();
        for (int num1 = 0; num1 < vector_InformationNuggets1.Count; ++num1)
        {
            appendInformationNuggets(vector_InformationNuggets1[num1]);
        }
        for (int num1 = 0; num1 < vector_InformationNuggets1.Count; ++num1)
        {
        }
    }
Exemple #3
0
 public void appendInformationNuggets(InformationNuggetIntentJSON to_append)
 {
     if (!flagHasInformationNuggets)
     {
         flagHasInformationNuggets = true;
         storeInformationNuggets.Clear();
     }
     Debug.Assert(flagHasInformationNuggets);
     storeInformationNuggets.Add(to_append);
 }
Exemple #4
0
 protected override void handle_result(InformationNuggetIntentJSON result)
 {
     top.value.Add(result);
 }
Exemple #5
0
        protected override void handle_result(InformationNuggetIntentJSON result)
        {
//@@@            Debug.Assert(!have_value);
            have_value = true;
            value      = result;
        }
Exemple #6
0
 protected abstract void handle_result(InformationNuggetIntentJSON new_result);
Exemple #7
0
 protected void finish(InformationNuggetIntentJSON result)
 {
 }
Exemple #8
0
 protected override void handle_result(InformationNuggetIntentJSON new_result)
 {
     handle_result((UserMemoryIntentJSON )new_result);
 }