| Index: src/messages.h
|
| diff --git a/src/messages.h b/src/messages.h
|
| index a5c4f677b24b14fd36333870e26d340fd29f9139..968d53081c5b642f26c1b1d5e6c5ac41c9c73ba5 100644
|
| --- a/src/messages.h
|
| +++ b/src/messages.h
|
| @@ -481,6 +481,11 @@ class CallSite {
|
| T(BadFunctionOrConstructorType, \
|
| "Expecting '=>' in function or constructor type.") \
|
| T(BadIndexType, "Invalid index type: expected 'number' or 'string'") \
|
| + T(BadAmbientDeclaration, \
|
| + "Invalid ambient: expected variable, function or class declaration") \
|
| + T(IllegalDeclare, \
|
| + "Unexpected 'declare', ambient declaration not allowed here") \
|
| + T(AmbientGetOrSet, "Unexpected 'get' or 'set' in ambient class declaration") \
|
| /* EvalError */ \
|
| T(CodeGenFromStrings, "%") \
|
| /* URIError */ \
|
|
|