UNPKG

301 BJavaScriptView Raw
1var ContinueStatement = module.exports = function(label) {
2 this.type = 'ContinueStatement';
3 this.label = label;
4};
5
6ContinueStatement.prototype.normalize = function (place) {
7 place.push(this);
8};
9
10ContinueStatement.prototype.transform = function (place) {
11 place.push(this);
12 return place;
13};