Fix fourslash range annotation

This commit is contained in:
Yui T 2015-12-16 16:06:55 -08:00
parent e3075bab78
commit ddbf1030ff
8 changed files with 22 additions and 22 deletions

View file

@ -1,9 +1,9 @@
/// <reference path='fourslash.ts'/>
//// class Foo {
//// constructor(private |privateParam|: number) {
//// let localPrivate = |privateParam|;
//// this.|privateParam| += 10;
//// constructor(private [|privateParam|]: number) {
//// let localPrivate = [|privateParam|];
//// this.[|privateParam|] += 10;
//// }
//// }

View file

@ -1,9 +1,9 @@
/// <reference path='fourslash.ts'/>
//// class Foo {
//// constructor(public |publicParam|: number) {
//// let localPublic = |publicParam|;
//// this.|publicParam| += 10;
//// constructor(public [|publicParam|]: number) {
//// let localPublic = [|publicParam|];
//// this.[|publicParam|] += 10;
//// }
//// }

View file

@ -1,9 +1,9 @@
/// <reference path='fourslash.ts'/>
//// class Foo {
//// constructor(protected |protectedParam|: number) {
//// let localProtected = |protectedParam|;
//// this.|protectedParam| += 10;
//// constructor(protected [|protectedParam|]: number) {
//// let localProtected = [|protectedParam|];
//// this.[|protectedParam|] += 10;
//// }
//// }

View file

@ -1,9 +1,9 @@
/// <reference path='fourslash.ts'/>
//// class Foo {
//// constructor(private |privateParam|: number) {
//// let localPrivate = |privateParam|;
//// this.|privateParam| += 10;
//// constructor(private [|privateParam|]: number) {
//// let localPrivate = [|privateParam|];
//// this.[|privateParam|] += 10;
//// }
//// }

View file

@ -1,9 +1,9 @@
/// <reference path='fourslash.ts'/>
//// class Foo {
//// constructor(public |publicParam|: number) {
//// let publicParam = |publicParam|;
//// this.|publicParam| += 10;
//// constructor(public [|publicParam|]: number) {
//// let publicParam = [|publicParam|];
//// this.[|publicParam|] += 10;
//// }
//// }

View file

@ -1,9 +1,9 @@
/// <reference path='fourslash.ts'/>
//// class Foo {
//// constructor(protected |protectedParam|: number) {
//// let protectedParam = |protectedParam|;
//// this.|protectedParam| += 10;
//// constructor(protected [|protectedParam|]: number) {
//// let protectedParam = [|protectedParam|];
//// this.[|protectedParam|] += 10;
//// }
//// }

View file

@ -1,8 +1,8 @@
/// <reference path='fourslash.ts'/>
//// class Foo {
//// constructor(protected { |protectedParam| }) {
//// let myProtectedParam = |protectedParam|;
//// constructor(protected { [|protectedParam|] }) {
//// let myProtectedParam = [|protectedParam|];
//// }
//// }

View file

@ -1,8 +1,8 @@
/// <reference path='fourslash.ts'/>
//// class Foo {
//// constructor(protected [ |protectedParam| ]) {
//// let myProtectedParam = |protectedParam|;
//// constructor(protected [ [|protectedParam|] ]) {
//// let myProtectedParam = [|protectedParam|];
//// }
//// }