44 #define TXT_s_ALREADY_DECLARED "'%s' is already declared" 45 #define TXT_ABSTRACT_CLASS_s_CANNOT_BE_INSTANTIATED "Abstract class '%s' cannot be instantiated" 46 #define TXT_ACCESSING_PRIVATE_PROP_s "Accessing private property '%s' of parent class" 47 #define TXT_ARG_NOT_LVALUE "Output argument expression is not assignable" 48 #define TXT_ATTR_s_INFORMED_MULTIPLE_TIMES "Attribute '%s' informed multiple times" 49 #define TXT_AUTO_NOT_ALLOWED "Auto is not allowed here" 51 #define TXT_BOTH_MUST_BE_SAME "Can't find unambiguous implicit conversion to make both expressions have the same type" 52 #define TXT_BOTH_CONDITIONS_MUST_CALL_CONSTRUCTOR "Both conditions must call constructor" 53 #define TEXT_BASE_DOESNT_HAVE_DEF_CONSTR "Base class doesn't have default constructor. Make explicit call to base constructor" 55 #define TXT_CANDIDATES_ARE "Candidates are:" 56 #define TXT_CANNOT_CALL_CONSTRUCTOR_IN_LOOPS "Can't call a constructor in loops" 57 #define TXT_CANNOT_CALL_CONSTRUCTOR_IN_SWITCH "Can't call a constructor in switch" 58 #define TXT_CANNOT_CALL_CONSTRUCTOR_TWICE "Can't call a constructor multiple times" 59 #define TXT_CANNOT_CREATE_DELEGATE_FOR_NOREF_TYPES "Can't create delegate for types that do not support handles" 60 #define TXT_CANNOT_IMPLEMENT_SELF "Can't implement itself, or another interface that implements this interface" 61 #define TXT_CANNOT_INHERIT_FROM_s_FINAL "Can't inherit from class '%s' marked as final" 62 #define TXT_CANNOT_INHERIT_FROM_MULTIPLE_CLASSES "Can't inherit from multiple classes" 63 #define TXT_CANNOT_INHERIT_FROM_SELF "Can't inherit from itself, or another class that inherits from this class" 64 #define TXT_CANNOT_PASS_CLASS_METHOD_AS_ARG "Can't pass class method as arg directly. Use a delegate object instead" 65 #define TXT_CANNOT_RESOLVE_AUTO "Unable to resolve auto type" 66 #define TXT_CANNOT_ACCESS_NON_STATIC_MEMBER_s "Cannot access non-static member '%s' like this" 67 #define TXT_CANNOT_RETURN_REF_TO_LOCAL "Can't return reference to local value." 68 #define TXT_CANT_CONSTRUCT_s_USE_REF_CAST "Can't construct handle '%s'. Use ref cast instead" 69 #define TXT_CANT_IMPLICITLY_CONVERT_s_TO_s "Can't implicitly convert from '%s' to '%s'." 70 #define TXT_CANT_RETURN_VALUE "Can't return value when return type is 'void'" 71 #define TXT_CHANGE_SIGN "Implicit conversion changed sign of value" 72 #define TXT_CLASS_CANT_BE_FINAL_AND_ABSTRACT "A class cannot be both abstract and final" 73 #define TXT_COMPILING_s "Compiling %s" 74 #define TXT_COMPOUND_ASGN_ON_VALUE_TYPE "Compound assignments with property accessors on value types are not supported" 75 #define TXT_COMPOUND_ASGN_WITH_IDX_PROP "Compound assignments with indexed property accessors are not supported" 76 #define TXT_COMPOUND_ASGN_REQUIRE_GET_SET "Compound assignments with property accessors require both get and set accessors" 77 #define TXT_PROP_ACCESS_s_DOES_NOT_EXPECT_INDEX "Implemented property accessor '%s' does not expect index argument" 78 #define TXT_PROP_ACCESS_s_EXPECTS_INDEX "Implemented property accessor '%s' expects index argument" 80 #define TXT_DATA_TYPE_CANT_BE_s "Data type can't be '%s'" 81 #define TXT_DECL_IN_SWITCH "Variables cannot be declared in switch cases, except inside statement blocks" 82 #define TXT_DEFAULT_MUST_BE_LAST "The default case must be the last one" 83 #define TXT_DEF_ARG_MISSING_IN_FUNC_s "All subsequent parameters after the first default value must have default values in function '%s'" 84 #define TXT_DEF_ARG_TYPE_DOESNT_MATCH "The type of the default argument expression doesn't match the function parameter type" 85 #define TXT_DUPLICATE_NAMED_ARG "Duplicate named argument" 86 #define TXT_DERIVED_METHOD_MUST_HAVE_SAME_RETTYPE_s "The method in the derived class must have the same return type as in the base class: '%s'" 87 #define TXT_DESTRUCTOR_MAY_NOT_HAVE_PARM "The destructor must not have any parameters" 88 #define TXT_DESTRUCTOR_s_s_NAME_ERROR "The name of the destructor '%s::~%s' must be the same as the class" 89 #define TXT_DISALLOW_ASSIGN_ON_REF_TYPE "Value assignment on reference types is not allowed. Did you mean to do a handle assignment?" 90 #define TXT_DISALLOW_COMPOUND_ASSIGN_ON_REF_TYPE "Compound assignment on reference types is not allowed" 91 #define TXT_DUPLICATE_SWITCH_CASE "Duplicate switch case" 93 #define TXT_ELSE_WITH_EMPTY_STATEMENT "Else with empty statement" 94 #define TXT_EMPTY_LIST_ELEMENT_IS_NOT_ALLOWED "Empty list element is not allowed" 95 #define TXT_EMPTY_SWITCH "Empty switch statement" 96 #define TXT_EXPECTED_s "Expected '%s'" 97 #define TXT_EXPECTED_CONSTANT "Expected constant" 98 #define TXT_EXPECTED_DATA_TYPE "Expected data type" 99 #define TXT_EXPECTED_EXPRESSION_VALUE "Expected expression value" 100 #define TXT_EXPECTED_IDENTIFIER "Expected identifier" 101 #define TXT_EXPECTED_LIST "Expected a list enclosed by { } to match pattern" 102 #define TXT_EXPECTED_METHOD_OR_PROPERTY "Expected method or property" 103 #define TXT_EXPECTED_ONE_OF "Expected one of: " 104 #define TXT_EXPECTED_OPERATOR "Expected operator" 105 #define TXT_EXPECTED_s_OR_s "Expected '%s' or '%s'" 106 #define TXT_EXPECTED_POST_OPERATOR "Expected post operator" 107 #define TXT_EXPECTED_PRE_OPERATOR "Expected pre operator" 108 #define TXT_EXPECTED_STRING "Expected string" 109 #define TXT_EXPR_DOESNT_EVAL_TO_FUNC "Expression doesn't evaluate to a function" 110 #define TXT_EXPR_MUST_BE_BOOL "Expression must be of boolean type" 111 #define TXT_EXPR_s_IS_DATA_TYPE "Expression '%s' is a data type" 112 #define TXT_EXTERNAL_SHARED_s_NOT_FOUND "External shared entity '%s' not found" 113 #define TXT_EXTERNAL_SHARED_s_CANNOT_REDEF "External shared entity '%s' cannot redefine the original entity" 115 #define TXT_FAILED_TO_COMPILE_DEF_ARG_d_IN_FUNC_s "Failed while compiling default arg for parameter %d in function '%s'" 116 #define TXT_FAILED_TO_CREATE_TEMP_OBJ "Previous error occurred while attempting to create a temporary copy of object" 117 #define TXT_FLOAT_CONV_TO_INT_CAUSE_TRUNC "Float value truncated in implicit conversion to integer" 118 #define TXT_FOUND_MULTIPLE_ENUM_VALUES "Found multiple matching enum values" 119 #define TXT_FUNCTION_ALREADY_EXIST "A function with the same name and parameters already exists" 120 #define TXT_FUNCTION_s_NOT_FOUND "Function '%s' not found" 122 #define TXT_GET_SET_ACCESSOR_TYPE_MISMATCH_FOR_s "The property '%s' has mismatching types for the get and set accessors" 123 #define TXT_GLOBAL_VARS_NOT_ALLOWED "Global variables have been disabled by the application" 125 #define TXT_HANDLE_ASSIGN_ON_NON_HANDLE_PROP "It is not allowed to perform a handle assignment on a non-handle property" 126 #define TXT_HANDLE_COMPARISON "The operand is implicitly converted to handle in order to compare them" 127 #define TXT_HANDLE_OF_HANDLE_IS_NOT_ALLOWED "Handle to handle is not allowed" 128 #define TXT_s_HIDES_VAR_IN_OUTER_SCOPE "Variable '%s' hides another variable of same name in outer scope" 130 #define TXT_IDENTIFIER_s_NOT_DATA_TYPE "Identifier '%s' is not a data type" 131 #define TXT_IDENTIFIER_s_NOT_DATA_TYPE_IN_GLOBAL_NS "Identifier '%s' is not a data type in global namespace" 132 #define TXT_IDENTIFIER_s_NOT_DATA_TYPE_IN_NS_s "Identifier '%s' is not a data type in namespace '%s' or parent" 133 #define TXT_IF_WITH_EMPTY_STATEMENT "If with empty statement" 134 #define TXT_ILLEGAL_MEMBER_TYPE "Illegal member type" 136 #define TXT_ILLEGAL_OPERATION "Illegal operation on this datatype" 137 #define TXT_ILLEGAL_OPERATION_ON_s "Illegal operation on '%s'" 138 #define TXT_ILLEGAL_TARGET_TYPE_FOR_REF_CAST "Illegal target type for reference cast" 139 #define TXT_ILLEGAL_VARIABLE_NAME_s "Illegal variable name '%s'." 140 #define TXT_INHERITED_PRIVATE_PROP_ACCESS_s "Illegal access to inherited private property '%s'" 141 #define TXT_INIT_LIST_CANNOT_BE_USED_WITH_s "Initialization lists cannot be used with '%s'" 142 #define TXT_INSTANCING_INVLD_TMPL_TYPE_s_s "Attempting to instantiate invalid template type '%s<%s>'" 143 #define TXT_INSTEAD_FOUND_s "Instead found '%s'" 144 #define TXT_INSTEAD_FOUND_IDENTIFIER_s "Instead found identifier '%s'" 145 #define TXT_INSTEAD_FOUND_KEYWORD_s "Instead found reserved keyword '%s'" 146 #define TXT_INTERFACE_s_CANNOT_BE_INSTANTIATED "Interface '%s' cannot be instantiated" 147 #define TXT_INTERFACE_CAN_ONLY_IMPLEMENT_INTERFACE "Interfaces can only implement other interfaces" 148 #define TXT_INVALID_BREAK "Invalid 'break'" 149 #define TXT_INVALID_CHAR_LITERAL "Invalid character literal" 150 #define TXT_INVALID_CONTINUE "Invalid 'continue'" 151 #define TXT_INVALID_ESCAPE_SEQUENCE "Invalid escape sequence" 152 #define TXT_INVALID_EXPRESSION_AMBIGUOUS_NAME "Invalid expression: ambiguous name" 153 #define TXT_INVALID_EXPRESSION_LAMBDA "Invalid expression: stand-alone anonymous function" 154 #define TXT_INVALID_OP_ON_METHOD "Invalid operation on method" 155 #define TXT_INVALID_REF_PROP_ACCESS "Invalid reference. Property accessors cannot be used in combined read/write operations" 156 #define TXT_INVALID_SCOPE "Invalid scope resolution" 157 #define TXT_INVALID_SIG_FOR_VIRTPROP "Invalid signature for virtual property" 158 #define TXT_INVALID_TYPE "Invalid type" 159 #define TXT_INVALID_UNICODE_FORMAT_EXPECTED_d "Invalid unicode escape sequence, expected %d hex digits" 160 #define TXT_INVALID_UNICODE_VALUE "Invalid unicode code point" 161 #define TXT_INVALID_UNICODE_SEQUENCE_IN_SRC "Invalid unicode sequence in source" 162 #define TXT_INVALID_USE_OF_NAMED_ARGS "Invalid use of named arguments" 164 #define TXT_METHOD_CANNOT_OVERRIDE_s "Method '%s' declared as final and cannot be overridden" 165 #define TXT_METHOD_CANT_HAVE_NAME_OF_CLASS "The method cannot be named with the class name" 166 #define TXT_METHOD_s_DOES_NOT_OVERRIDE "Method '%s' marked as override but does not replace any base class or interface method" 167 #define TXT_METHOD_s_s_HAS_NO_RETURN_TYPE "Method '%s::%s' is missing the return type, nor is it the same name as object to be a constructor" 168 #define TXT_METHOD_s_NOT_PART_OF_OBJECT_s "Method '%s' is not part of object '%s'" 169 #define TXT_MISSING_IMPLEMENTATION_OF_s "Missing implementation of '%s'" 170 #define TXT_MISSING_DEFINITION_OF_s "Missing definition of '%s'" 171 #define TXT_MIXIN_CANNOT_BE_DECLARED_AS_s "Mixin class cannot be declared as '%s'" 172 #define TXT_MIXIN_CANNOT_HAVE_CONSTRUCTOR "Mixin classes cannot have constructors or destructors" 173 #define TXT_MIXIN_CLASS_CANNOT_INHERIT "Mixin class cannot inherit from classes" 174 #define TXT_MIXIN_CANNOT_HAVE_CHILD_TYPES "Mixin classes cannot have child types" 175 #define TXT_MORE_THAN_ONE_MATCHING_OP "Found more than one matching operator" 176 #define TXT_MULTIPLE_MATCHING_SIGNATURES_TO_s "Multiple matching signatures to '%s'" 177 #define TXT_MULTIPLE_PROP_GET_ACCESSOR_FOR_s "Found multiple get accessors for property '%s'" 178 #define TXT_MULTIPLE_PROP_SET_ACCESSOR_FOR_s "Found multiple set accessors for property '%s'" 179 #define TXT_MULTILINE_STRINGS_NOT_ALLOWED "Multiline strings are not allowed in this application" 180 #define TXT_MUST_BE_OBJECT "Only objects have constructors" 181 #define TXT_MUST_RETURN_VALUE "Must return a value" 183 #define TXT_NAMESPACE_s_DOESNT_EXIST "Namespace '%s' doesn't exist." 184 #define TXT_NAME_CONFLICT_s_EXTENDED_TYPE "Name conflict. '%s' is an extended data type." 185 #define TXT_NAME_CONFLICT_s_GLOBAL_PROPERTY "Name conflict. '%s' is a global property." 186 #define TXT_NAME_CONFLICT_s_IS_NAMED_TYPE "Name conflict. '%s' is a named type." 187 #define TXT_NAME_CONFLICT_s_IS_FUNCDEF "Name conflict. '%s' is a funcdef." 188 #define TXT_NAME_CONFLICT_s_IS_FUNCTION "Name conflict. '%s' is a global function." 189 #define TXT_NAME_CONFLICT_s_IS_MIXIN "Name conflict. '%s' is a mixin class." 190 #define TXT_NAME_CONFLICT_s_IS_VIRTPROP "Name conflict. '%s' is a virtual property." 191 #define TXT_NAME_CONFLICT_s_STRUCT "Name conflict. '%s' is a class." 192 #define TXT_NAME_CONFLICT_s_INTF "Name conflict. '%s' is an interface." 193 #define TXT_NAME_CONFLICT_s_OBJ_PROPERTY "Name conflict. '%s' is an object property." 194 #define TXT_NAME_CONFLICT_s_METHOD "Name conflict. '%s' is a class method." 195 #define TXT_NAME_CONFLICT_s_ALREADY_USED "Name conflict. '%s' is already used." 196 #define TXT_NAMED_ARGS_WITH_OLD_SYNTAX "Detected named argument with old syntax" 197 #define TXT_NO_APPROPRIATE_INDEX_OPERATOR "No appropriate indexing operator found" 198 #define TXT_NO_APPROPRIATE_OPHNDLASSIGN_s "No appropriate opHndlAssign method found in '%s' for handle assignment" 199 #define TXT_NO_APPROPRIATE_OPEQUALS "No appropriate opEquals method found" 200 #define TXT_NO_CONVERSION_s_TO_s "No conversion from '%s' to '%s' available." 201 #define TXT_NO_CONVERSION_s_TO_MATH_TYPE "No conversion from '%s' to math type available." 202 #define TXT_NO_DEFAULT_ARRAY_TYPE "The application doesn't support the default array type." 203 #define TXT_NO_DEFAULT_CONSTRUCTOR_FOR_s "No default constructor for object of type '%s'." 204 #define TXT_NO_DEFAULT_COPY_OP_FOR_s "No appropriate opAssign method found in '%s' for value assignment" 205 #define TXT_NO_COPY_CONSTRUCTOR_FOR_s "No copy constructor for object of type '%s'." 206 #define TXT_NO_MATCHING_SIGNATURES_TO_s "No matching signatures to '%s'" 207 #define TXT_NO_MATCHING_OP_FOUND_FOR_TYPE_s "No matching operator that takes the type '%s' found" 208 #define TXT_NO_MATCHING_OP_FOUND_FOR_TYPES_s_AND_s "No matching operator that takes the types '%s' and '%s' found" 209 #define TXT_NO_MATCHING_SYMBOL_s "No matching symbol '%s'" 210 #define TXT_NON_CONST_METHOD_ON_CONST_OBJ "Non-const method call on read-only object reference" 211 #define TXT_NONTERMINATED_STRING "Non-terminated string literal" 212 #define TXT_NOT_A_FUNC_s_IS_TYPE_s "Expression doesn't form a function call. '%s' evaluates to the non-function type '%s'" 213 #define TXT_NOT_ALL_PATHS_RETURN "Not all paths return a value" 214 #define TXT_NOT_ENOUGH_VALUES_FOR_LIST "Not enough values to match pattern" 215 #define TXT_s_NOT_DECLARED "'%s' is not declared" 216 #define TXT_NOT_EXACT "Implicit conversion of value is not exact" 217 #define TXT_s_NOT_INITIALIZED "'%s' is not initialized." 218 #define TXT_NOT_LVALUE "Expression is not an l-value" 219 #define TXT_s_NOT_MEMBER_OF_s "'%s' is not a member of '%s'" 220 #define TXT_NOT_VALID_REFERENCE "Not a valid reference" 221 #define TXT_NOT_VALID_LVALUE "Not a valid lvalue" 222 #define TXT_NOTHING_WAS_BUILT "Nothing was built in the module" 224 #define TXT_OBJECT_DOESNT_SUPPORT_INDEX_OP "Type '%s' doesn't support the indexing operator" 225 #define TXT_OBJECT_HANDLE_NOT_SUPPORTED "Object handle is not supported for this type" 226 #define TXT_ONLY_OBJECTS_MAY_USE_REF_INOUT "Only object types that support object handles can use &inout. Use &in or &out instead" 227 #define TXT_ONLY_ONE_ARGUMENT_IN_CAST "A cast operator has one argument" 228 #define TXT_ONLY_ONE_FUNCTION_ALLOWED "The code must contain one and only one function" 229 #define TXT_ONLY_ONE_VARIABLE_ALLOWED "The code must contain one and only one global variable" 230 #define TXT_OPERANDS_MUST_BE_HANDLES "Both operands must be handles when comparing identity" 231 #define TXT_OVERLOAD_CONFLICTS_DUE_TO_DEFAULT_ARGS "The overloaded functions are identical on initial parameters without default arguments" 233 #define TXT_PARAMETER_ALREADY_DECLARED "Parameter already declared" 234 #define TXT_PARAMETER_CANT_BE_s "Parameter type can't be '%s', because the type cannot be instantiated." 235 #define TXT_POS_ARG_AFTER_NAMED_ARG "Positional arguments cannot be passed after named arguments" 236 #define TXT_PREV_ERROR_WHILE_COMP_LIST_FOR_TYPE_s "Previous error occurred while attempting to compile initialization list for type '%s'" 237 #define TXT_PRIVATE_METHOD_CALL_s "Illegal call to private method '%s'" 238 #define TXT_PRIVATE_PROP_ACCESS_s "Illegal access to private property '%s'" 239 #define TXT_PROTECTED_METHOD_CALL_s "Illegal call to protected method '%s'" 240 #define TXT_PROTECTED_PROP_ACCESS_s "Illegal access to protected property '%s'" 241 #define TXT_PROP_ACCESS_WITH_INDEX_ONE_ARG "Property accessor with index must have 1 and only 1 index argument" 242 #define TXT_PROPERTY_ACCESSOR_DISABLED "Property accessors have been disabled by the application" 243 #define TXT_PROPERTY_ACCESSOR_MUST_BE_IMPLEMENTED "Property accessor must be implemented" 244 #define TXT_PROPERTY_CANT_BE_CONST "Class properties cannot be declared as const" 245 #define TXT_PROPERTY_HAS_NO_GET_ACCESSOR "The property has no get accessor" 246 #define TXT_PROPERTY_HAS_NO_SET_ACCESSOR "The property has no set accessor" 247 #define TXT_PROPERTY_WITHOUT_ACCESSOR "Virtual property must have at least one get or set accessor" 249 #define TXT_REF_CANT_BE_TO_LOCAL_VAR "Resulting reference cannot be returned. Returned references must not refer to local variables." 250 #define TXT_REF_CANT_BE_RETURNED_DEFERRED_PARAM "Resulting reference cannot be returned. There are deferred arguments that may invalidate it." 251 #define TXT_REF_CANT_BE_RETURNED_LOCAL_VARS "Resulting reference cannot be returned. The expression uses objects that during cleanup may invalidate it." 252 #define TXT_REF_IS_READ_ONLY "Reference is read-only" 253 #define TXT_REF_IS_TEMP "Reference is temporary" 254 #define TXT_REF_TYPE_CANT_BE_PASSED_BY_VAL "Reference types cannot be passed by value in function parameters" 255 #define TXT_REF_TYPE_CANT_BE_RETURNED_BY_VAL "Reference types cannot be returned by value from functions" 256 #define TXT_RETURN_CANT_BE_s "Return type can't be '%s'" 258 #define TXT_SHARED_CANNOT_ACCESS_NON_SHARED_VAR_s "Shared code cannot access non-shared global variable '%s'" 259 #define TXT_SHARED_CANNOT_CALL_NON_SHARED_FUNC_s "Shared code cannot call non-shared function '%s'" 260 #define TXT_SHARED_CANNOT_IMPLEMENT_NON_SHARED_s "Shared type cannot implement non-shared interface '%s'" 261 #define TXT_SHARED_CANNOT_INHERIT_FROM_NON_SHARED_s "Shared class cannot inherit from non-shared class '%s'" 262 #define TXT_SHARED_CANNOT_USE_NON_SHARED_TYPE_s "Shared code cannot use non-shared type '%s'" 263 #define TXT_SHARED_s_DOESNT_MATCH_ORIGINAL "Shared type '%s' doesn't match the original declaration in other module" 264 #define TXT_SECTION_IS_EMPTY "The script section is empty" 265 #define TXT_SIGNED_UNSIGNED_MISMATCH "Signed/Unsigned mismatch" 266 #define TXT_STRINGS_NOT_RECOGNIZED "Strings are not recognized by the application" 267 #define TXT_SWITCH_CASE_MUST_BE_CONSTANT "Case expressions must be constants" 268 #define TXT_SWITCH_MUST_BE_INTEGRAL "Switch expressions must be integral numbers" 270 #define TXT_TMPL_s_EXPECTS_d_SUBTYPES "Template '%s' expects %d sub type(s)" 271 #define TXT_TMPL_SUBTYPE_MUST_NOT_BE_READ_ONLY "Template subtype must not be read-only" 272 #define TXT_TOO_MANY_JUMP_LABELS "The function has too many jump labels to handle. Split the function into smaller ones." 273 #define TXT_TOO_MANY_VALUES_FOR_LIST "Too many values to match pattern" 274 #define TXT_TYPE_s_CANNOT_BE_REFERENCE "Type '%s' cannot be a reference" 275 #define TXT_TYPE_s_NOT_AVAILABLE_FOR_MODULE "Type '%s' is not available for this module" 276 #define TXT_TYPE_s_NOT_TEMPLATE "Type '%s' is not a template type" 278 #define TXT_UNEXPECTED_END_OF_FILE "Unexpected end of file" 279 #define TXT_UNEXPECTED_TOKEN_s "Unexpected token '%s'" 280 #define TXT_UNEXPECTED_VAR_DECL "Unexpected variable declaration" 281 #define TXT_UNINITIALIZED_GLOBAL_VAR_s "Use of uninitialized global variable '%s'." 282 #define TXT_UNKNOWN_SCOPE_s "Unknown scope '%s'" 283 #define TXT_UNREACHABLE_CODE "Unreachable code" 284 #define TXT_UNRECOGNIZED_VIRTUAL_PROPERTY_NODE "Virtual property contains unrecognized aspect" 285 #define TXT_UNUSED_SCRIPT_NODE "Unused script node" 287 #define TXT_VALUE_TOO_LARGE_FOR_TYPE "Value is too large for data type" 288 #define TXT_VOID_CANT_BE_OPERAND "Void cannot be an operand in expressions" 290 #define TXT_WARNINGS_TREATED_AS_ERROR "Warnings are treated as errors by the application" 291 #define TXT_WHERE_s_IS_s "Where '%s' is '%s'" 292 #define TXT_WHILE_PARSING_ARG_LIST "While parsing argument list" 293 #define TXT_WHILE_PARSING_EXPRESSION "While parsing expression" 294 #define TXT_WHILE_PARSING_INIT_LIST "While parsing initialization list" 295 #define TXT_WHILE_PARSING_NAMESPACE "While parsing namespace" 296 #define TXT_WHILE_PARSING_STATEMENT_BLOCK "While parsing statement block" 297 #define TXT_WHILE_INCLUDING_MIXIN "Previous error occurred while including mixin" 301 #define TXT_FAILED_TO_INITIALIZE_s "Failed to initialize global variable '%s'" 302 #define TXT_EXCEPTION_s_IN_s "Exception '%s' in '%s'" 306 #define TXT_AUTOHANDLE_CANNOT_BE_USED_FOR_NOCOUNT "Autohandles cannot be used with types that have been registered with NOCOUNT" 307 #define TXT_FIRST_PARAM_MUST_BE_REF_FOR_TEMPLATE_FACTORY "First parameter to template factory must be a reference. This will be used to pass the object type of the template" 308 #define TXT_INVALID_CONFIGURATION "Invalid configuration. Verify the registered application interface." 309 #define TXT_VALUE_TYPE_MUST_HAVE_SIZE "A value type must be registered with a non-zero size" 310 #define TXT_TYPE_s_IS_MISSING_BEHAVIOURS "Type '%s' is missing behaviours" 311 #define TXT_ILLEGAL_BEHAVIOUR_FOR_TYPE "The behaviour is not compatible with the type" 312 #define TXT_GC_REQUIRE_ADD_REL_GC_BEHAVIOUR "A garbage collected ref type must have the addref, release, and all gc behaviours" 313 #define TXT_VALUE_GC_REQUIRE_GC_BEHAVIOUR "A garbage collected value type must have the gc enum references behaviour" 314 #define TXT_SCOPE_REQUIRE_REL_BEHAVIOUR "A scoped reference type must have the release behaviour" 315 #define TXT_REF_REQUIRE_ADD_REL_BEHAVIOUR "A reference type must have the addref and release behaviours" 316 #define TXT_NON_POD_REQUIRE_CONSTR_DESTR_BEHAVIOUR "A non-pod value type must have at least one constructor and the destructor behaviours" 317 #define TXT_CANNOT_PASS_TYPE_s_BY_VAL "Can't pass type '%s' by value unless the application type is informed in the registration" 318 #define TXT_CANNOT_RET_TYPE_s_BY_VAL "Can't return type '%s' by value unless the application type is informed in the registration" 320 #define TXT_DONT_SUPPORT_TYPE_s_BY_VAL "Don't support passing type '%s' by value to application in native calling convention on this platform" 322 #define TXT_DONT_SUPPORT_RET_TYPE_s_BY_VAL "Don't support returning type '%s' by value from application in native calling convention on this platform" 323 #define TXT_d_GC_CANNOT_FREE_OBJ_OF_TYPE_s "Object {%d}. GC cannot destroy an object of type '%s' as it doesn't know how many references to there are." 324 #define TXT_d_GC_CANNOT_FREE_OBJ_OF_TYPE_s_REF_COUNT_d "Object {%d}. GC cannot destroy an object of type '%s' as it can't see all references. Current ref count is %d." 325 #define TXT_OBJECT_TYPE_s_DOESNT_EXIST "Object type '%s' doesn't exist" 326 #define TXT_TEMPLATE_s_ALREADY_GENERATED_CANT_REGISTER "Cannot register. The template type instance '%s' has already been generated." 327 #define TXT_TEMPLATE_TYPE_s_DOESNT_EXIST "Template type '%s' doesn't exist" 328 #define TXT_TEMPLATE_SUBTYPE_s_DOESNT_EXIST "Template subtype '%s' doesn't exist" 329 #define TXT_TEMPLATE_LIST_FACTORY_EXPECTS_2_REF_PARAMS "Template list factory expects two reference parameters. The last is the pointer to the initialization buffer" 330 #define TXT_LIST_FACTORY_EXPECTS_1_REF_PARAM "List factory expects only one reference parameter. The pointer to the initialization buffer will be passed in this parameter" 331 #define TXT_FAILED_READ_SUBTYPE_OF_TEMPLATE_s "Failed to read subtype of template type '%s'" 332 #define TXT_FAILED_IN_FUNC_s_s_d "Failed in call to function '%s' (Code: %s, %d)" 333 #define TXT_FAILED_IN_FUNC_s_WITH_s_s_d "Failed in call to function '%s' with '%s' (Code: %s, %d)" 334 #define TXT_FAILED_IN_FUNC_s_WITH_s_AND_s_s_d "Failed in call to function '%s' with '%s' and '%s' (Code: %s, %d)" 335 #define TXT_GC_RECEIVED_NULL_PTR "AddScriptObjectToGC called with null pointer" 336 #define TXT_EXCEPTION_IN_NESTED_CALL "An exception occurred in a nested call" 337 #define TXT_TYPE_s_IS_STILL_USED_BY_FUNC_s "Type '%s' is still used by function '%s'" 338 #define TXT_PREV_TYPE_IS_NAMED_s "The builtin type in previous message is named '%s'" 339 #define TXT_PREV_FUNC_IS_NAMED_s_TYPE_IS_d "The function in previous message is named '%s'. The func type is %d" 340 #define TXT_RESURRECTING_SCRIPTOBJECT_s "The script object of type '%s' is being resurrected illegally during destruction" 341 #define TXT_INVALID_BYTECODE_d "LoadByteCode failed. The bytecode is invalid. Number of bytes read from stream: %d" 342 #define TXT_NO_JIT_IN_FUNC_s "Function '%s' appears to have been compiled without JIT entry points" 343 #define TXT_ENGINE_REF_COUNT_ERROR_DURING_SHUTDOWN "Uh oh! The engine's reference count is increasing while it is being destroyed. Make sure references needed for clean-up are immediately released" 344 #define TXT_MODULE_IS_IN_USE "The module is still in use and cannot be rebuilt. Discard it and request another module" 345 #define TXT_EXTRNL_REF_TO_MODULE_s "There is an external reference to an object in module '%s', preventing it from being deleted" 349 #define TXT_PROPERTY "Property" 350 #define TXT_SYSTEM_FUNCTION "System function" 351 #define TXT_VARIABLE_DECL "Variable declaration" 355 #define TXT_STACK_OVERFLOW "Stack overflow" 356 #define TXT_NULL_POINTER_ACCESS "Null pointer access" 357 #define TXT_DIVIDE_BY_ZERO "Divide by zero" 358 #define TXT_DIVIDE_OVERFLOW "Overflow in integer division" 359 #define TXT_POW_OVERFLOW "Overflow in exponent operation" 360 #define TXT_UNRECOGNIZED_BYTE_CODE "Unrecognized byte code" 361 #define TXT_INVALID_CALLING_CONVENTION "Invalid calling convention" 362 #define TXT_UNBOUND_FUNCTION "Unbound function called" 363 #define TXT_OUT_OF_BOUNDS "Out of range" 364 #define TXT_EXCEPTION_CAUGHT "Caught an exception from the application" 365 #define TXT_MISMATCH_IN_VALUE_ASSIGN "Mismatching types in value assignment" 366 #define TXT_TOO_MANY_NESTED_CALLS "Too many nested calls" 369 #define ERROR_NAME(x) #x 370 static const char *
const errorNames[] = {
371 ERROR_NAME(asSUCCESS),
373 ERROR_NAME(asCONTEXT_ACTIVE),
374 ERROR_NAME(asCONTEXT_NOT_FINISHED),
375 ERROR_NAME(asCONTEXT_NOT_PREPARED),
376 ERROR_NAME(asINVALID_ARG),
377 ERROR_NAME(asNO_FUNCTION),
378 ERROR_NAME(asNOT_SUPPORTED),
379 ERROR_NAME(asINVALID_NAME),
380 ERROR_NAME(asNAME_TAKEN),
381 ERROR_NAME(asINVALID_DECLARATION),
382 ERROR_NAME(asINVALID_OBJECT),
383 ERROR_NAME(asINVALID_TYPE),
384 ERROR_NAME(asALREADY_REGISTERED),
385 ERROR_NAME(asMULTIPLE_FUNCTIONS),
386 ERROR_NAME(asNO_MODULE),
387 ERROR_NAME(asNO_GLOBAL_VAR),
388 ERROR_NAME(asINVALID_CONFIGURATION),
389 ERROR_NAME(asINVALID_INTERFACE),
390 ERROR_NAME(asCANT_BIND_ALL_FUNCTIONS),
391 ERROR_NAME(asLOWER_ARRAY_DIMENSION_NOT_REGISTERED),
392 ERROR_NAME(asWRONG_CONFIG_GROUP),
393 ERROR_NAME(asCONFIG_GROUP_IS_IN_USE),
394 ERROR_NAME(asILLEGAL_BEHAVIOUR_FOR_TYPE),
395 ERROR_NAME(asWRONG_CALLING_CONV),
396 ERROR_NAME(asBUILD_IN_PROGRESS),
397 ERROR_NAME(asINIT_GLOBAL_VARS_FAILED),
398 ERROR_NAME(asOUT_OF_MEMORY),
399 ERROR_NAME(asMODULE_IS_IN_USE)