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") |
| 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 |
74 Checking 'document. bo' | 92 Checking 'document. bo' |
75 Found: body | 93 Found: body |
76 | 94 |
77 Checking 'document. bo' | 95 Checking 'document. bo' |
78 Found: body | 96 Found: body |
79 | 97 |
80 Checking 'document. | 98 Checking 'document. |
81 bo' | 99 bo' |
82 Found: body | 100 Found: body |
83 | 101 |
(...skipping 13 matching lines...) Expand all Loading... |
97 Checking 'document[[win' | 115 Checking 'document[[win' |
98 Found: window | 116 Found: window |
99 | 117 |
100 Checking 'document[ [win' | 118 Checking 'document[ [win' |
101 Found: window | 119 Found: window |
102 | 120 |
103 Checking 'document[ [ win' | 121 Checking 'document[ [ win' |
104 Found: window | 122 Found: window |
105 | 123 |
106 | 124 |
OLD | NEW |