TypeScript/tests/cases/fourslash/regexDetection.ts
2016-09-13 11:49:01 -07:00

16 lines
412 B
TypeScript

/// <reference path="fourslash.ts" />
//// /*1*/15 / /*2*/Math.min(61 / /*3*/42, 32 / 15) / /*4*/15;
goTo.marker("1");
verify.not.quickInfoExists();
goTo.marker("2");
verify.quickInfoIs("const Math: Math",
"An intrinsic object that provides basic mathematics functionality and constants. ");
goTo.marker("3");
verify.not.quickInfoExists();
goTo.marker("4");
verify.not.quickInfoExists();