private void fromJSONValue(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 Value of UberRequestFatalErrorsJSON is not an array."); } int count1 = json_array1.componentCount(); List <UberRequestFatalErrorJSON> vector_Value1 = new List <UberRequestFatalErrorJSON>(count1); for (int num1 = 0; num1 < count1; ++num1) { UberRequestFatalErrorJSON convert_classy = UberRequestFatalErrorJSON.from_json(json_array1.component(num1), ignore_extras, true); vector_Value1.Add(convert_classy); } initValue(); for (int num1 = 0; num1 < vector_Value1.Count; ++num1) { appendValue(vector_Value1[num1]); } for (int num1 = 0; num1 < vector_Value1.Count; ++num1) { } }
public void appendValue(UberRequestFatalErrorJSON to_append) { if (!flagHasValue) { flagHasValue = true; storeValue.Clear(); } Debug.Assert(flagHasValue); storeValue.Add(to_append); }
protected void finish(UberRequestFatalErrorJSON result) { if (fieldGeneratorErrorCode.have_value) { result.setErrorCode(fieldGeneratorErrorCode.value); fieldGeneratorErrorCode.have_value = false; } else if ((!(result.hasErrorCode())) && !allow_incomplete) { error("When parsing the object for %what%, the \"ErrorCode\" field was missing."); } if (fieldGeneratorErrorMessage.have_value) { result.setErrorMessage(fieldGeneratorErrorMessage.value); fieldGeneratorErrorMessage.have_value = false; } }
protected override void finish() { UberRequestFatalErrorJSON result = new UberRequestFatalErrorJSON(); 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.extraUberRequestFatalErrorAppendPair(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); }
protected override void handle_result(UberRequestFatalErrorJSON result) { top.value.Add(result); }
protected override void handle_result(UberRequestFatalErrorJSON result) { //@@@ Debug.Assert(!have_value); have_value = true; value = result; }
protected abstract void handle_result(UberRequestFatalErrorJSON new_result);