Code coverage report for 6to5/transformation/transformers/es6-generators/leap.js

Statements: 98.85% (86 / 87)      Branches: 93.75% (15 / 16)      Functions: 100% (12 / 12)      Lines: 98.85% (86 / 87)      Ignored: none     

All files » 6to5/transformation/transformers/es6-generators/ » leap.js
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164                    1 1 1 1 1 1 1   1 1 1   1   1 201     1 100   100   100     1   1 21   21 21   21 1   20     21 21 21     1   1 1   1   1     1   1 37   37   37 24   13     37 18   19       37   37 37 37     1   1 24   24 24   24 24     1   1 18   18   18     1   1 100   100 100   100 100     1 101 101 101 101   101 101       1 3 15 15 15 3 2   2     1               1 2     1 1    
/**
 * Copyright (c) 2014, Facebook, Inc.
 * All rights reserved.
 *
 * This source code is licensed under the BSD-style license found in the
 * https://raw.github.com/facebook/regenerator/master/LICENSE file. An
 * additional grant of patent rights can be found in the PATENTS file in
 * the same directory.
 */
 
exports.FunctionEntry = FunctionEntry;
exports.FinallyEntry  = FinallyEntry;
exports.SwitchEntry   = SwitchEntry;
exports.LeapManager   = LeapManager;
exports.CatchEntry    = CatchEntry;
exports.LoopEntry     = LoopEntry;
exports.TryEntry      = TryEntry;
 
var assert = require("assert");
var util   = require("util");
var t      = require("../../../types");
 
var inherits = util.inherits;
 
function Entry() {
  assert.ok(this instanceof Entry);
}
 
function FunctionEntry(returnLoc) {
  Entry.call(this);
 
  t.assertLiteral(returnLoc);
 
  this.returnLoc = returnLoc;
}
 
inherits(FunctionEntry, Entry);
 
function LoopEntry(breakLoc, continueLoc, label) {
  Entry.call(this);
 
  t.assertLiteral(breakLoc);
  t.assertLiteral(continueLoc);
 
  if (label) {
    t.assertIdentifier(label);
  } else {
    label = null;
  }
 
  this.breakLoc = breakLoc;
  this.continueLoc = continueLoc;
  this.label = label;
}
 
inherits(LoopEntry, Entry);
 
function SwitchEntry(breakLoc) {
  Entry.call(this);
 
  t.assertLiteral(breakLoc);
 
  this.breakLoc = breakLoc;
}
 
inherits(SwitchEntry, Entry);
 
function TryEntry(firstLoc, catchEntry, finallyEntry) {
  Entry.call(this);
 
  t.assertLiteral(firstLoc);
 
  if (catchEntry) {
    assert.ok(catchEntry instanceof CatchEntry);
  } else {
    catchEntry = null;
  }
 
  if (finallyEntry) {
    assert.ok(finallyEntry instanceof FinallyEntry);
  } else {
    finallyEntry = null;
  }
 
  // Have to have one or the other (or both).
  assert.ok(catchEntry || finallyEntry);
 
  this.firstLoc = firstLoc;
  this.catchEntry = catchEntry;
  this.finallyEntry = finallyEntry;
}
 
inherits(TryEntry, Entry);
 
function CatchEntry(firstLoc, paramId) {
  Entry.call(this);
 
  t.assertLiteral(firstLoc);
  t.assertIdentifier(paramId);
 
  this.firstLoc = firstLoc;
  this.paramId = paramId;
}
 
inherits(CatchEntry, Entry);
 
function FinallyEntry(firstLoc) {
  Entry.call(this);
 
  t.assertLiteral(firstLoc);
 
  this.firstLoc = firstLoc;
}
 
inherits(FinallyEntry, Entry);
 
function LeapManager(emitter) {
  assert.ok(this instanceof LeapManager);
 
  var Emitter = require("./emit").Emitter;
  assert.ok(emitter instanceof Emitter);
 
  this.emitter = emitter;
  this.entryStack = [new FunctionEntry(emitter.finalLoc)];
}
 
LeapManager.prototype.withEntry = function (entry, callback) {
  assert.ok(entry instanceof Entry);
  this.entryStack.push(entry);
  try {
    callback.call(this.emitter);
  } finally {
    var popped = this.entryStack.pop();
    assert.strictEqual(popped, entry);
  }
};
 
LeapManager.prototype._findLeapLocation = function (property, label) {
  for (var i = this.entryStack.length - 1; i >= 0; --i) {
    var entry = this.entryStack[i];
    var loc = entry[property];
    if (loc) {
      if (label) {
        Eif (entry.label &&
            entry.label.name === label.name) {
          return loc;
        }
      } else {
        return loc;
      }
    }
  }
 
  return null;
};
 
LeapManager.prototype.getBreakLoc = function (label) {
  return this._findLeapLocation("breakLoc", label);
};
 
LeapManager.prototype.getContinueLoc = function (label) {
  return this._findLeapLocation("continueLoc", label);
};