534 {AE_VALUE_OUT_OF_RANGE, "Value out of range", "Value outside the presecribed range."},
535
536 {AE_TOO_MANY_CLOSE_BRACES, "Too many }", "You have closed too many braces. Go back to the code and see if there is an erroneous additional } in the code."},
537 {AE_MAXIMUM_BRACES_REACHED, "Maximum braces reached", "Please contact tom at nobleape dot com"},
538 {AE_FIRST_VALUE_FAILED, "First value failed", "Something is wrong with the first value of an equality, if or while operation. It could be the first and only value in this function."},
539 {AE_SECOND_VALUE_FAILED, "Second value failed", "Something is wrong with the second number/variable value of an equality, if or while operation."},
542 {AE_WRONG_END, "Wrong end", "A bracket or colon was expected but not found."},
543
544 {AE_LINE_START_INCORRECT, "Line start incorrect", "A line of code begins incorrectly. It could start with a number or an operator when if/while or a variable was expected."},
546 {AE_IF_WHILE_NOT_FOLLOWED_BY_BRACKET, "if/while not followed by {", "All if/while statements require a bracket following the if/while (allowing for any amount of whitespace too)."},
552 {AE_WITHOUT_OPEN_BRACE, "Without {", "All if/while statements expect what is executed through the bracket enclosed statement being correct to be followed by inclusive braces { }. There is no single line if or while statements without { } in ApeScript."},
556 {AE_CODE_AFTER_MAIN, "Code after main", "All the code in ApeScript must exist before the end of main."},
557 {AE_NO_CLOSE_BRACE_TO_END_OF_FILE, "No } to end of file", "Based on the final main function it is expected that the last meaningful character will be }."},
558 {AE_CODE_OUTSIDE_FUNCTION, "Code outside function", "All code in ApeScript needs to exist within functions."},
559 {AE_INPUT_VARIABLE_WITHOUT_EQUALS, "Input variable without equals", "All variables set require an equals following the variable."},
560 {AE_ASSIGN_VALUE_FAILED, "Assign value failed", "Something is wrong with the variable set by an equality."},