Remove remaining @flow annotations

This commit is contained in:
Amjad Masad 2016-03-03 15:10:59 -08:00
parent b5315d4b27
commit aca8010438
6 changed files with 0 additions and 10 deletions

View File

@ -1,4 +1,3 @@
/* @flow */
// A second optional argument can be given to further configure
// the parser process. These options are recognized:

View File

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

View File

@ -1,5 +1,3 @@
/* @flow */
import { reservedWords } from "../util/identifier";
import { getOptions } from "../options";
import Tokenizer from "../tokenizer";

View File

@ -1,5 +1,3 @@
/* @flow */
import { types as tt } from "../tokenizer/types";
import Parser from "./index";
import { lineBreak } from "../util/whitespace";

View File

@ -1,5 +1,3 @@
/* @flow */
// The algorithm used to determine whether a regexp can appear at a
// given point in the program is loosely based on sweet.js' approach.
// See https://github.com/mozilla/sweet.js/wiki/design

View File

@ -1,5 +1,3 @@
/* @flow */
// Matches a whole line break (where CRLF is considered a single
// line break). Used to count lines.