File: expected.js

package info (click to toggle)
node-babel 6.26.0%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 16,772 kB
  • sloc: sh: 151; makefile: 76
file content (15 lines) | stat: -rw-r--r-- 249 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
var foo = function () {
  var _this = this;

  return function () {
    return React.createElement(_this, null);
  };
};

var bar = function () {
  var _this2 = this;

  return function () {
    return React.createElement(_this2.foo, null);
  };
};