We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cff6e69 commit ab64b6dCopy full SHA for ab64b6d
lib/repl.js
@@ -1239,11 +1239,11 @@ function addStandardGlobals(completionGroups, filter) {
1239
// they just get in the way.
1240
if (filter) {
1241
completionGroups.push([
1242
- 'break', 'case', 'catch', 'const', 'continue', 'debugger', 'default',
1243
- 'delete', 'do', 'else', 'export', 'false', 'finally', 'for', 'function',
1244
- 'if', 'import', 'in', 'instanceof', 'let', 'new', 'null', 'return',
1245
- 'switch', 'this', 'throw', 'true', 'try', 'typeof', 'undefined', 'var',
1246
- 'void', 'while', 'with', 'yield'
+ 'async', 'await', 'break', 'case', 'catch', 'const', 'continue',
+ 'debugger', 'default', 'delete', 'do', 'else', 'export', 'false',
+ 'finally', 'for', 'function', 'if', 'import', 'in', 'instanceof', 'let',
+ 'new', 'null', 'return', 'switch', 'this', 'throw', 'true', 'try',
+ 'typeof', 'undefined', 'var', 'void', 'while', 'with', 'yield'
1247
]);
1248
}
1249
0 commit comments