Sha256: dde1b6068d2478ca17e559a9dbefb259726c972a53e924fc7945731cc53f6808

Contents?: true

Size: 710 Bytes

Versions: 1

Compression:

Stored size: 710 Bytes

Contents

System.register("ContinueStatement", [], function() {
  "use strict";
  var __moduleName = "ContinueStatement";
  function require(path) {
    return $traceurRuntime.require("ContinueStatement", path);
  }
  "use strict";
  (function() {
    var Node = module.require("../Node").Node;
    function ContinueStatement() {
      Node.call(this);
      this.type = "ContinueStatement";
    }
    ContinueStatement.prototype = Object.create(Node);
    ContinueStatement.prototype.codegen = function() {
      if (!Node.prototype.codegen.call(this)) {
        return;
      }
      return this;
    };
    exports.ContinueStatement = ContinueStatement;
  }());
  return {};
});
System.get("ContinueStatement" + '');

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
spider-src-0.1.6 lib/spider-src/support/spider/node_modules/spider-script/lib/ast/statements/ContinueStatement.js