This commit is contained in:
Mohamed Hegazy 2016-10-13 17:11:03 -07:00
parent 97d40ab432
commit 2cd404038e
2 changed files with 5 additions and 1 deletions

3
src/lib/es5.d.ts vendored
View file

@ -244,6 +244,9 @@ interface Function {
*/
bind(this: Function, thisArg: any, ...argArray: any[]): any;
/** Returns a string representation of a function. */
toString(): string;
prototype: any;
readonly length: number;

View file

@ -23,7 +23,7 @@
verify.numberOfErrorsInCurrentFile(0);
for (var i = 1; i <= 7; i++) {
goTo.marker('' + i);
verify.memberListCount(7);
verify.memberListCount(8);
verify.completionListContains('apply');
verify.completionListContains('arguments');
verify.completionListContains('bind');
@ -31,4 +31,5 @@ for (var i = 1; i <= 7; i++) {
verify.completionListContains('length');
verify.completionListContains('caller');
verify.completionListContains('prototype');
verify.completionListContains('toString');
}