TypeScript/tests/cases/fourslash/getMatchingBracesNegativeCases.ts
2014-07-29 12:17:44 -07:00

19 lines
447 B
TypeScript

/// <reference path="fourslash.ts"/>
////// less than and greater than tests
//// public bar(a, b) {
//// return a [|< b || a >|] b;
//// }
////
////// in comments
//// // [|{ }|]
//// // [|( )|]
//// // [|[ ]|]
//// // [|< >|]
test.ranges().forEach((range) => {
verify.noMatchingBracePositionInCurrentFile(range.start);
verify.noMatchingBracePositionInCurrentFile(range.end);
});