diff --git a/src/babel/messages.js b/src/babel/messages.js index 507112ddc2..45b0ba25e8 100644 --- a/src/babel/messages.js +++ b/src/babel/messages.js @@ -13,7 +13,6 @@ export const MESSAGES = { expectedMemberExpressionOrIdentifier: "Expected type MemberExpression or Identifier", invalidParentForThisNode: "We don't know how to handle this node within the current parent - please open an issue", readOnly: "$1 is read-only", - modulesIllegalExportName: "Illegal export $1", unknownForHead: "Unknown node type $1 in ForStatement", didYouMean: "Did you mean $1?", codeGeneratorDeopt: "Note: The code generator has deoptimised the styling of $1 as it exceeds the max of $2.", @@ -22,6 +21,9 @@ export const MESSAGES = { illegalMethodName: "Illegal method name $1", lostTrackNodePath: "We lost track of this nodes position, likely because the AST was directly manipulated", + modulesIllegalExportName: "Illegal export $1", + modulesDuplicateDeclarations: "Duplicate module declarations with the same source but in different scopes", + undeclaredVariable: "Reference to undeclared variable $1", undeclaredVariableType: "Referencing a type alias outside of a type annotation", undeclaredVariableSuggestion: "Reference to undeclared variable $1 - did you mean $2?",