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 |
| 92 Checking 'myMap.delete('' |
| 93 Found: 'first') |
| 94 Found: 'second') |
| 95 Found: 'third') |
| 96 |
74 Checking 'document. bo' | 97 Checking 'document. bo' |
75 Found: body | 98 Found: body |
76 | 99 |
77 Checking 'document. bo' | 100 Checking 'document. bo' |
78 Found: body | 101 Found: body |
79 | 102 |
80 Checking 'document. | 103 Checking 'document.\nbo' |
81 bo' | |
82 Found: body | 104 Found: body |
83 | 105 |
84 Checking 'document. | 106 Checking 'document.\r\nbo' |
85 bo' | |
86 Found: body | 107 Found: body |
87 | 108 |
88 Checking 'document [ 'bo' | 109 Checking 'document [ 'bo' |
89 Not Found: 'body'] | 110 Not Found: 'body'] |
90 | 111 |
91 Checking 'function hey(should' | 112 Checking 'function hey(should' |
92 Not Found: shouldNotFindThisFunction | 113 Not Found: shouldNotFindThisFunction |
93 | 114 |
94 Checking 'var should' | 115 Checking 'var should' |
95 Not Found: shouldNotFindThisFunction | 116 Not Found: shouldNotFindThisFunction |
96 | 117 |
97 Checking 'document[[win' | 118 Checking 'document[[win' |
98 Found: window | 119 Found: window |
99 | 120 |
100 Checking 'document[ [win' | 121 Checking 'document[ [win' |
101 Found: window | 122 Found: window |
102 | 123 |
103 Checking 'document[ [ win' | 124 Checking 'document[ [ win' |
104 Found: window | 125 Found: window |
105 | 126 |
106 Checking 'I|mag' | 127 Checking 'I|mag' |
107 Found: Image | 128 Found: Image |
108 Found: Infinity | 129 Found: Infinity |
109 | 130 |
110 Checking 'var x = (do|);' | 131 Checking 'var x = (do|);' |
111 Found: document | 132 Found: document |
112 | 133 |
113 | 134 |
OLD | NEW |