UNPKG

babel-core

Version:

A compiler for writing next generation JavaScript

28 lines (21 loc) 493 B
"use strict"; exports.__esModule = true; var _es6ForOf = require("../es6/for-of"); var metadata = { optional: true }; exports.metadata = metadata; /** * [Please add a description.] */ var visitor = { /** * [Please add a description.] */ ForOfStatement: function ForOfStatement(node, parent, scope, file) { if (this.get("right").isGenericType("Array")) { return _es6ForOf._ForOfStatementArray.call(this, node, scope, file); } } }; exports.visitor = visitor;