|
107 | 107 | ////function /*l*/l(param1: string) { /*9*/param1 = "hello"; }
|
108 | 108 |
|
109 | 109 | goTo.marker('a');
|
110 |
| -verify.quickInfoIs(undefined, "This is firstLine\nThis is second Line\n\nThis is fourth Line"); |
| 110 | +verify.quickInfoIs("var a: string", "This is firstLine\nThis is second Line\n\nThis is fourth Line"); |
111 | 111 |
|
112 | 112 | goTo.marker('b');
|
113 |
| -verify.quickInfoIs(undefined, "This is firstLine\nThis is second Line\n\nThis is fourth Line"); |
| 113 | +verify.quickInfoIs("var b: string", "This is firstLine\nThis is second Line\n\nThis is fourth Line"); |
114 | 114 |
|
115 | 115 | goTo.marker('c');
|
116 |
| -verify.quickInfoIs(undefined, "This is firstLine\nThis is second Line\n\nThis is fourth Line"); |
| 116 | +verify.quickInfoIs("var c: string", "This is firstLine\nThis is second Line\n\nThis is fourth Line"); |
117 | 117 |
|
118 | 118 | goTo.marker('d');
|
119 |
| -verify.quickInfoIs(undefined, "This is firstLine\nThis is second Line\n@random tag This should be third line"); |
| 119 | +verify.quickInfoIs("function d(param: string): void", "This is firstLine\nThis is second Line\n@random tag This should be third line"); |
120 | 120 | goTo.marker('1');
|
121 |
| -verify.quickInfoIs(undefined, ""); |
| 121 | +verify.quickInfoIs("(parameter) param: string", ""); |
122 | 122 |
|
123 | 123 | goTo.marker('e');
|
124 |
| -verify.quickInfoIs(undefined, "This is firstLine\nThis is second Line"); |
| 124 | +verify.quickInfoIs("function e(param: string): void", "This is firstLine\nThis is second Line"); |
125 | 125 | goTo.marker('2');
|
126 |
| -verify.quickInfoIs(undefined, ""); |
| 126 | +verify.quickInfoIs("(parameter) param: string", ""); |
127 | 127 |
|
128 | 128 | goTo.marker('f');
|
129 |
| -verify.quickInfoIs(undefined, "This is firstLine\nThis is second Line\n@random tag This should be third line"); |
| 129 | +verify.quickInfoIs("function f(param1: string): void", "This is firstLine\nThis is second Line\n@random tag This should be third line"); |
130 | 130 | goTo.marker('3');
|
131 |
| -verify.quickInfoIs(undefined, "first line of param\n\nparam information third line"); |
| 131 | +verify.quickInfoIs("(parameter) param1: string", "first line of param\n\nparam information third line"); |
132 | 132 |
|
133 | 133 | goTo.marker('g');
|
134 |
| -verify.quickInfoIs(undefined, "This is firstLine\nThis is second Line\n@random tag This should be third line"); |
| 134 | +verify.quickInfoIs("function g(param1: string): void", "This is firstLine\nThis is second Line\n@random tag This should be third line"); |
135 | 135 | goTo.marker('4');
|
136 |
| -verify.quickInfoIs(undefined, "param information first line"); |
| 136 | +verify.quickInfoIs("(parameter) param1: string", "param information first line"); |
137 | 137 |
|
138 | 138 | goTo.marker('h');
|
139 |
| -verify.quickInfoIs(undefined, "This is firstLine\nThis is second Line\n@random tag This should be third line"); |
| 139 | +verify.quickInfoIs("function h(param1: string): void", "This is firstLine\nThis is second Line\n@random tag This should be third line"); |
140 | 140 | goTo.marker('5');
|
141 |
| -verify.quickInfoIs(undefined, "param information first line\n\nparam information third line"); |
| 141 | +verify.quickInfoIs("(parameter) param1: string", "param information first line\n\nparam information third line"); |
142 | 142 |
|
143 | 143 | goTo.marker('i');
|
144 |
| -verify.quickInfoIs(undefined, "This is firstLine\nThis is second Line"); |
| 144 | +verify.quickInfoIs("function i(param1: string): void", "This is firstLine\nThis is second Line"); |
145 | 145 | goTo.marker('6');
|
146 |
| -verify.quickInfoIs(undefined, "param information first line\n\nparam information third line"); |
| 146 | +verify.quickInfoIs("(parameter) param1: string", "param information first line\n\nparam information third line"); |
147 | 147 |
|
148 | 148 | goTo.marker('j');
|
149 |
| -verify.quickInfoIs(undefined, "This is firstLine\nThis is second Line"); |
| 149 | +verify.quickInfoIs("function j(param1: string): void", "This is firstLine\nThis is second Line"); |
150 | 150 | goTo.marker('7');
|
151 |
| -verify.quickInfoIs(undefined, "param information first line\n\nparam information third line"); |
| 151 | +verify.quickInfoIs("(parameter) param1: string", "param information first line\n\nparam information third line"); |
152 | 152 |
|
153 | 153 | goTo.marker('k');
|
154 |
| -verify.quickInfoIs(undefined, "This is firstLine\nThis is second Line\n@randomtag \n\n random information first line\n\n random information third line"); |
| 154 | +verify.quickInfoIs("function k(param1: string): void", "This is firstLine\nThis is second Line\n@randomtag \n\n random information first line\n\n random information third line"); |
155 | 155 | goTo.marker('8');
|
156 |
| -verify.quickInfoIs(undefined, "hello "); |
| 156 | +verify.quickInfoIs("(parameter) param1: string", "hello "); |
157 | 157 |
|
158 | 158 | goTo.marker('l');
|
159 |
| -verify.quickInfoIs(undefined, "This is firstLine\nThis is second Line"); |
| 159 | +verify.quickInfoIs("function l(param1: string): void", "This is firstLine\nThis is second Line"); |
160 | 160 | goTo.marker('9');
|
161 |
| -verify.quickInfoIs(undefined, "first Line text\nblank line that shouldnt be shown when starting this \nsecond time information about the param again"); |
| 161 | +verify.quickInfoIs("(parameter) param1: string", "first Line text\nblank line that shouldnt be shown when starting this \nsecond time information about the param again"); |
0 commit comments