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 {
244244 */
245245 bind ( this : Function , thisArg : any , ...argArray : any [ ] ) : any ;
246246
247+ /** Returns a string representation of a function. */
248+ toString ( ) : string ;
249+
247250 prototype : any ;
248251 readonly length : number ;
249252
Original file line number Diff line number Diff line change 2323verify . numberOfErrorsInCurrentFile ( 0 ) ;
2424for ( var i = 1 ; i <= 7 ; i ++ ) {
2525 goTo . marker ( '' + i ) ;
26- verify . memberListCount ( 7 ) ;
26+ verify . memberListCount ( 8 ) ;
2727 verify . completionListContains ( 'apply' ) ;
2828 verify . completionListContains ( 'arguments' ) ;
2929 verify . completionListContains ( 'bind' ) ;
3030 verify . completionListContains ( 'call' ) ;
3131 verify . completionListContains ( 'length' ) ;
3232 verify . completionListContains ( 'caller' ) ;
3333 verify . completionListContains ( 'prototype' ) ;
34+ verify . completionListContains ( 'toString' ) ;
3435}
You can’t perform that action at this time.
0 commit comments