'use strict'; function deshorthandify(program) { program.search('#Property').forEach(function (node) { node.shorthand = false; node.method = false; }); } exports.transform = deshorthandify;