TypeScript/tests/cases/fourslash_old/breakpointValidationClass.ts
2014-07-12 17:30:19 -07:00

23 lines
No EOL
647 B
TypeScript

/// <reference path='fourslash.ts' />
// @BaselineFile: bpSpan_class.baseline
// @Filename: bpSpan_class.ts
////class Greeter {
//// constructor(public greeting: string, ...b: string[]) {
//// }
//// greet() {
//// return "<h1>" + this.greeting + "</h1>";
//// }
//// private x: string;
//// private x1: number = 10;
//// private fn() {
//// return this.greeting;
//// }
//// get greetings() {
//// return this.greeting;
//// }
//// set greetings(greetings: string) {
//// this.greeting = greetings;
//// }
////}
verify.baselineCurrentFileBreakpointLocations();