Remove flow

This commit is contained in:
Sam Goldman
2016-03-01 21:02:55 -08:00
parent f4197cc77b
commit 2827ff6b01
75 changed files with 278 additions and 542 deletions

View File

@@ -17,8 +17,8 @@ let buildWrapper = template(`
export default function ({ types: t }) {
let ALREADY_VISITED = Symbol();
function findConstructorCall(path): ?Object {
let methods: Array<Object> = path.get("body.body");
function findConstructorCall(path) {
let methods = path.get("body.body");
for (let method of methods) {
if (method.node.kind === "constructorCall") {