@@ -22,7 +22,7 @@ module TypeScript {
2222 "Parameter cannot have question mark and initializer." : { "code" : 1015 , "category" : DiagnosticCategory . Error } ,
2323 "A required parameter cannot follow an optional parameter." : { "code" : 1016 , "category" : DiagnosticCategory . Error } ,
2424 "Index signatures cannot have rest parameters." : { "code" : 1017 , "category" : DiagnosticCategory . Error } ,
25- "Index signature parameter cannot have accessibility modifiers." : { "code" : 1018 , "category" : DiagnosticCategory . Error } ,
25+ "Index signature parameter cannot have modifiers." : { "code" : 1018 , "category" : DiagnosticCategory . Error } ,
2626 "Index signature parameter cannot have a question mark." : { "code" : 1019 , "category" : DiagnosticCategory . Error } ,
2727 "Index signature parameter cannot have an initializer." : { "code" : 1020 , "category" : DiagnosticCategory . Error } ,
2828 "Index signature must have a type annotation." : { "code" : 1021 , "category" : DiagnosticCategory . Error } ,
@@ -101,6 +101,11 @@ module TypeScript {
101101 "'yield' expression must be contained within a generator declaration." : { "code" : 1113 , "category" : DiagnosticCategory . Error } ,
102102 "Unterminated regular expression literal." : { "code" : 1114 , "category" : DiagnosticCategory . Error } ,
103103 "Unterminated template literal." : { "code" : 1115 , "category" : DiagnosticCategory . Error } ,
104+ "'await' expression must be contained within an 'async' declaration." : { "code" : 1116 , "category" : DiagnosticCategory . Error } ,
105+ "'async' arrow function parameters must be parenthesized." : { "code" : 1117 , "category" : DiagnosticCategory . Error } ,
106+ "A generator declaration cannot have the 'async' modifier." : { "code" : 1118 , "category" : DiagnosticCategory . Error } ,
107+ "'async' modifier cannot appear here." : { "code" : 1119 , "category" : DiagnosticCategory . Error } ,
108+ "'comma' expression cannot appear in a computed property name." : { "code" : 1120 , "category" : DiagnosticCategory . Error } ,
104109 "Duplicate identifier '{0}'." : { "code" : 2000 , "category" : DiagnosticCategory . Error } ,
105110 "The name '{0}' does not exist in the current scope." : { "code" : 2001 , "category" : DiagnosticCategory . Error } ,
106111 "The name '{0}' does not refer to a value." : { "code" : 2002 , "category" : DiagnosticCategory . Error } ,
0 commit comments