Skip to content

Commit

Permalink
Update fixtures for removal of -get>, -set>
Browse files Browse the repository at this point in the history
  • Loading branch information
wcjohnson committed Jul 15, 2017
1 parent 87d40f3 commit 664fd25
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion test/fixtures/arrow-methods-class/skinny-get/actual.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
class A {
f() -get> 1
get f() -> 1
}
2 changes: 1 addition & 1 deletion test/fixtures/arrow-methods-class/skinny-set/actual.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
class A {
f(x) -set>
set f(x) ->
this.x = x
}
2 changes: 1 addition & 1 deletion test/fixtures/arrow-methods-obj/skinny-get/actual.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
o = {
f() -get> 1
get f() -> 1
}
2 changes: 1 addition & 1 deletion test/fixtures/arrow-methods-obj/skinny-set/actual.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
o = {
f(x) -set>
set f(x) ->
this.x = x
}
2 changes: 1 addition & 1 deletion test/fixtures/implicit-returns/set-no-return/actual.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
class X {
y(z) -set>
set y(z) ->
this.z = z
}

0 comments on commit 664fd25

Please sign in to comment.