Skip to content

Commit

Permalink
Restore unit test related to tilde chaining
Browse files Browse the repository at this point in the history
  • Loading branch information
wcjohnson committed Sep 24, 2017
1 parent 9ac1dd4 commit 832cf9d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions test/fixtures/safe-member-expression/calls-after/expected.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
var _a$b, _a$b$c, _c;
var _ref, _ref2, _ref3;

a == null ? void 0 : a.b();

a == null ? void 0 : (_a$b = a.b()) == null ? void 0 : _a$b.c().d.e();
(_ref = a == null ? void 0 : a.b()) == null ? void 0 : _ref.c().d.e();

a == null ? void 0 : (_a$b$c = a.b().c) == null ? void 0 : _a$b$c.d().e.f();
(_ref2 = a == null ? void 0 : a.b().c) == null ? void 0 : _ref2.d().e.f();

c(a == null ? void 0 : a.b);
a == null ? void 0 : c(a.b);

e((_c = c(a == null ? void 0 : a.b)) == null ? void 0 : _c.d);
(_ref3 = a == null ? void 0 : c(a.b)) == null ? void 0 : e(_ref3.d);

0 comments on commit 832cf9d

Please sign in to comment.