OLD | NEW |
1 Tests that console correctly finds suggestions in complicated cases. | 1 Tests that console correctly finds suggestions in complicated cases. |
2 | 2 |
3 Checking 'window.do' | 3 Checking 'window.do' |
4 Found: document | 4 Found: document |
5 | 5 |
6 Checking 'win' | 6 Checking 'win' |
7 Found: window | 7 Found: window |
8 | 8 |
9 Checking 'window["doc' | 9 Checking 'window["doc' |
10 Found: "document"] | 10 Found: "document"] |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 | 64 |
65 Checking '// do' | 65 Checking '// do' |
66 Not Found: document | 66 Not Found: document |
67 | 67 |
68 Checking '["should' | 68 Checking '["should' |
69 Not Found: shouldNotFindThisFunction | 69 Not Found: shouldNotFindThisFunction |
70 | 70 |
71 Checking 'shou' | 71 Checking 'shou' |
72 Not Found: should not find this | 72 Not Found: should not find this |
73 | 73 |
| 74 Checking 'myMap.get(' |
| 75 Found: "first") |
| 76 Found: "second") |
| 77 Found: "third") |
74 | 78 |
| 79 Checking 'myMap.get('' |
| 80 Found: 'first') |
| 81 Found: 'second') |
| 82 Found: 'third') |
| 83 |
| 84 Checking 'myMap.set('firs' |
| 85 Found: 'first', |
| 86 |
| 87 Checking 'myMap.set(should' |
| 88 Found: shouldFindThisFunction |
| 89 Not Found: shouldNotFindThis |
| 90 Not Found: "shouldNotFindThis") |
| 91 |
| 92 |
OLD | NEW |