summaryrefslogtreecommitdiffstats
path: root/third_party/webkit/PerformanceTests/six-speed/tests/arrow.es5
blob: f1f7ff9c1de5dfd7ceeeb3d5bd035c8e13378a9e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
var obj = {
  value: 42,
  fn: function() {
    return function() {
      return obj.value;
    };
  }
};

var fn = obj.fn();
assertEqual(fn(), 42);

test(function() {
  fn();
});