(completionGroups)
| 144 | } |
| 145 | |
| 146 | function addCommonWords(completionGroups) { |
| 147 | // Only words which do not yet exist as global property should be added to |
| 148 | // this list. |
| 149 | ArrayPrototypePush(completionGroups, [ |
| 150 | 'async', 'await', 'break', 'case', 'catch', 'const', 'continue', |
| 151 | 'debugger', 'default', 'delete', 'do', 'else', 'export', 'false', |
| 152 | 'finally', 'for', 'function', 'if', 'import', 'in', 'instanceof', 'let', |
| 153 | 'new', 'null', 'return', 'switch', 'this', 'throw', 'true', 'try', |
| 154 | 'typeof', 'var', 'void', 'while', 'with', 'yield', |
| 155 | ]); |
| 156 | } |
| 157 | |
| 158 | function gracefulReaddir(...args) { |
| 159 | try { |
no outgoing calls
no test coverage detected
searching dependent graphs…