Home
last modified time | relevance | path

Searched refs:optionRegex (Results 1 – 7 of 7) sorted by relevance

/third_party/typescript/tests/baselines/reference/
Dparserharness.errors.txt82 …rser/ecmascript5/RealWorld/parserharness.ts(1430,17): error TS2304: Cannot find name 'optionRegex'.
83 …rser/ecmascript5/RealWorld/parserharness.ts(1440,29): error TS2304: Cannot find name 'optionRegex'.
85 …rser/ecmascript5/RealWorld/parserharness.ts(1466,36): error TS2304: Cannot find name 'optionRegex'.
86 …rser/ecmascript5/RealWorld/parserharness.ts(1484,21): error TS2304: Cannot find name 'optionRegex'.
1703 … private optionRegex = /^[\/]{2}\s*@(\w+):\s*(\S*)/gm; // multiple matches on multiple lines
1707 !!! error TS2304: Cannot find name 'optionRegex'.
1717 while ((match = optionRegex.exec(content)) != null) {
1719 !!! error TS2304: Cannot find name 'optionRegex'.
1747 var testMetaData = optionRegex.exec(line);
1749 !!! error TS2304: Cannot find name 'optionRegex'.
[all …]
Dparserharness.js1431 private optionRegex = /^[\/]{2}\s*@(\w+):\s*(\S*)/gm; // multiple matches on multiple lines
1441 while ((match = optionRegex.exec(content)) != null) {
1467 var testMetaData = optionRegex.exec(line);
1485 optionRegex.lastIndex = 0;
3314 optionRegex = /^[\/]{2}\s*@(\w+):\s*(\S*)/gm; // multiple matches on multiple lines
3320 while ((match = optionRegex.exec(content)) != null) {
3339 var testMetaData = optionRegex.exec(line);
3357 optionRegex.lastIndex = 0;
Dparserharness.types5817 private optionRegex = /^[\/]{2}\s*@(\w+):\s*(\S*)/gm; // multiple matches on multiple lines
5818 >optionRegex = /^[\/]{2}\s*@(\w+):\s*(\S*)/gm : RegExp
5819 >optionRegex : any
5846 while ((match = optionRegex.exec(content)) != null) {
5847 >(match = optionRegex.exec(content)) != null : boolean
5848 >(match = optionRegex.exec(content)) : any
5849 >match = optionRegex.exec(content) : any
5851 >optionRegex.exec(content) : any
5852 >optionRegex.exec : any
5853 >optionRegex : any
[all …]
Dparserharness.symbols4255 private optionRegex = /^[\/]{2}\s*@(\w+):\s*(\S*)/gm; // multiple matches on multiple lines
4272 while ((match = optionRegex.exec(content)) != null) {
4349 var testMetaData = optionRegex.exec(line);
4400 optionRegex.lastIndex = 0;
/third_party/typescript/tests/cases/conformance/parser/ecmascript5/RealWorld/
Dparserharness.ts1431 private optionRegex = /^[\/]{2}\s*@(\w+):\s*(\S*)/gm; // multiple matches on multiple lines
1441 while ((match = optionRegex.exec(content)) != null) {
1467 var testMetaData = optionRegex.exec(line);
1485 optionRegex.lastIndex = 0;
/third_party/typescript/src/harness/
DharnessIO.ts1154 … const optionRegex = /^[\/]{2}\s*@(\w+)\s*:\s*([^\r\n]*)/gm; // multiple matches on multiple lines constant
1171 … while ((match = optionRegex.exec(content)) !== null) { // eslint-disable-line no-null/no-null
1206 else if (testMetaData = optionRegex.exec(line)) {
1208 optionRegex.lastIndex = 0;
DfourslashImpl.ts4135 const optionRegex = /^\s*@(\w+):\s*(.*)\s*/; constant
4196 const match = optionRegex.exec(line.substr(2));