Remove remaining @flow annotations

This commit is contained in:
Amjad Masad
2016-03-03 15:10:59 -08:00
parent 12ee11a0a4
commit 2fbe28cc88
40 changed files with 0 additions and 72 deletions

View File

@@ -1,5 +1,3 @@
/* @flow */
import type Position from "./position";
import repeating from "repeating";
import trimRight from "trim-right";

View File

@@ -1,5 +1,3 @@
/* @flow */
export function File(node: Object) {
this.print(node.program, node);
}

View File

@@ -1,5 +1,3 @@
/* @flow */
export function ClassDeclaration(node: Object) {
this.printJoin(node.decorators, node, { separator: "" });
this.push("class");

View File

@@ -1,4 +1,3 @@
/* @flow */
/* eslint max-len: 0 */
import isInteger from "is-integer";

View File

@@ -1,4 +1,3 @@
/* @flow */
/* eslint max-len: 0 */
import * as t from "babel-types";

View File

@@ -1,5 +1,3 @@
/* @flow */
export function JSXAttribute(node: Object) {
this.print(node.name, node);
if (node.value) {

View File

@@ -1,5 +1,3 @@
/* @flow */
import * as t from "babel-types";
export function _params(node: Object) {

View File

@@ -1,5 +1,3 @@
/* @flow */
import * as t from "babel-types";
export function ImportSpecifier(node: Object) {

View File

@@ -1,5 +1,3 @@
/* @flow */
export function TaggedTemplateExpression(node: Object) {
this.print(node.tag, node);
this.print(node.quasi, node);

View File

@@ -1,4 +1,3 @@
/* @flow */
/* eslint max-len: 0 */
/* eslint quotes: 0 */

View File

@@ -1,5 +1,3 @@
/* @flow */
import * as t from "babel-types";
const PRECEDENCE = {

View File

@@ -1,5 +1,3 @@
/* @flow */
/**
* Track current position in code generation.
*/