File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -244,6 +244,9 @@ interface Function {
244
244
*/
245
245
bind ( this : Function , thisArg : any , ...argArray : any [ ] ) : any ;
246
246
247
+ /** Returns a string representation of a function. */
248
+ toString ( ) : string ;
249
+
247
250
prototype : any ;
248
251
readonly length : number ;
249
252
Original file line number Diff line number Diff line change 23
23
verify . numberOfErrorsInCurrentFile ( 0 ) ;
24
24
for ( var i = 1 ; i <= 7 ; i ++ ) {
25
25
goTo . marker ( '' + i ) ;
26
- verify . memberListCount ( 7 ) ;
26
+ verify . memberListCount ( 8 ) ;
27
27
verify . completionListContains ( 'apply' ) ;
28
28
verify . completionListContains ( 'arguments' ) ;
29
29
verify . completionListContains ( 'bind' ) ;
30
30
verify . completionListContains ( 'call' ) ;
31
31
verify . completionListContains ( 'length' ) ;
32
32
verify . completionListContains ( 'caller' ) ;
33
33
verify . completionListContains ( 'prototype' ) ;
34
+ verify . completionListContains ( 'toString' ) ;
34
35
}
You can’t perform that action at this time.
0 commit comments