Multiply entities beyond necessity even more (force better build parallelism)
[hiphop-php.git] / hphp / hack / src / parser / full_fidelity_trivia_kind.ml
blob57b5e453d00485a69a215fe25be54b9487742afa
1 (*
2 * Copyright (c) 2016, Facebook, Inc.
3 * All rights reserved.
5 * This source code is licensed under the MIT license found in the
6 * LICENSE file in the "hack" directory of this source tree. An additional
7 * directory.
9 **
11 * THIS FILE IS @generated; DO NOT EDIT IT
12 * To regenerate this file, run
14 * buck run //hphp/hack/src:generate_full_fidelity
20 type t =
21 | WhiteSpace
22 | EndOfLine
23 | DelimitedComment
24 | SingleLineComment
25 | FixMe
26 | IgnoreError
27 | FallThrough
28 | ExtraTokenError
29 | AfterHaltCompiler
31 [@@deriving show, enum]
33 let to_string kind =
34 match kind with
35 | WhiteSpace -> "whitespace"
36 | EndOfLine -> "end_of_line"
37 | DelimitedComment -> "delimited_comment"
38 | SingleLineComment -> "single_line_comment"
39 | FixMe -> "fix_me"
40 | IgnoreError -> "ignore_error"
41 | FallThrough -> "fall_through"
42 | ExtraTokenError -> "extra_token_error"
43 | AfterHaltCompiler -> "after_halt_compiler"