TypeScript/tests/cases/fourslash/completionListFunctionExpression.ts
2014-09-15 13:53:25 -07:00

21 lines
568 B
TypeScript

/// <reference path="fourslash.ts"/>
////class DataHandler {
//// dataArray: Uint8Array;
//// loadData(filename) {
//// var xmlReq = new XMLHttpRequest();
//// xmlReq.open("GET", "/" + filename, true);
//// xmlReq.responseType = "arraybuffer";
//// xmlReq.onload = function(xmlEvent) {
//// /*local*/
//// this./*this*/;
//// }
//// }
////}
goTo.marker("local");
edit.insertLine("");
verify.completionListContains("xmlEvent");
goTo.marker("this");
verify.completionListIsEmpty();