Sha256: 7a4cbd254f1f617832abb6baa4392aead97f2f596700eae7c0c262206b0c2301

Contents?: true

Size: 1.4 KB

Versions: 11

Compression:

Stored size: 1.4 KB

Contents

/**
 * Copyright 2013 Facebook, Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

/*jslint node: true*/

/**
 * Desugars ES6 Object Literal short notations into ES3 full notation.
 *
 * // Easier return values.
 * function foo(x, y) {
 *   return {x, y}; // {x: x, y: y}
 * };
 *
 * // Destructuring.
 * function init({port, ip, coords: {x, y}}) { ... }
 *
 */
var Syntax = require('esprima-fb').Syntax;
var utils = require('../src/utils');

/**
 * @public
 */
function visitObjectLiteralShortNotation(traverse, node, path, state) {
  utils.catchup(node.key.range[1], state);
  utils.append(':' + node.key.name, state);
  return false;
}

visitObjectLiteralShortNotation.test = function(node, path, state) {
  return node.type === Syntax.Property &&
    node.kind === 'init' &&
    node.shorthand === true &&
    path[0].type !== Syntax.ObjectPattern;
};

exports.visitorList = [
  visitObjectLiteralShortNotation
];

Version data entries

11 entries across 6 versions & 2 rubygems

Version Path
es6_tilt-0.1.2 test/dummy/app/assets/javascripts/node_modules/jstransform/visitors/es6-object-short-notation-visitors.js
es6_tilt-0.1.2 test/dummy/node_modules/jstransform/visitors/es6-object-short-notation-visitors.js
es6_tilt-0.1.1 test/dummy/app/assets/javascripts/node_modules/jstransform/visitors/es6-object-short-notation-visitors.js
es6_tilt-0.1.1 test/dummy/node_modules/jstransform/visitors/es6-object-short-notation-visitors.js
es6_tilt-0.1.0 test/dummy/app/assets/javascripts/node_modules/jstransform/visitors/es6-object-short-notation-visitors.js
gulp_assets-1.0.0.pre.5 template/node_modules/redux/node_modules/invariant/node_modules/envify/node_modules/jstransform/visitors/es6-object-short-notation-visitors.js
gulp_assets-1.0.0.pre.5 template/node_modules/react/node_modules/envify/node_modules/jstransform/visitors/es6-object-short-notation-visitors.js
gulp_assets-1.0.0.pre.4 template/node_modules/react/node_modules/envify/node_modules/jstransform/visitors/es6-object-short-notation-visitors.js
gulp_assets-1.0.0.pre.4 template/node_modules/redux/node_modules/invariant/node_modules/envify/node_modules/jstransform/visitors/es6-object-short-notation-visitors.js
gulp_assets-1.0.0.pre.3 template/node_modules/react/node_modules/envify/node_modules/jstransform/visitors/es6-object-short-notation-visitors.js
gulp_assets-1.0.0.pre.3 template/node_modules/redux/node_modules/invariant/node_modules/envify/node_modules/jstransform/visitors/es6-object-short-notation-visitors.js