TypeScript/tests/cases/fourslash/breakpointValidationClass.ts

53 lines
1.2 KiB
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
/// <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;
//// }
2015-03-02 23:41:44 +01:00
////}
////class Greeter2 {
////}
////class Greeter1
////{
//// 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;
//// }
2015-03-02 23:41:44 +01:00
////}
////class Greeter12
////{
////}
2015-03-02 23:41:44 +01:00
2014-07-13 01:04:16 +02:00
verify.baselineCurrentFileBreakpointLocations();