language stringlengths 0 24 | filename stringlengths 9 214 | code stringlengths 99 9.93M |
|---|---|---|
OCaml Interface | hhvm/hphp/hack/src/naming/naming_validate_module.mli | (*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the "hack" directory of this source tree.
*
*)
val pass :
(Naming_phase_error.t -> unit) -> Naming_phase_env.t Naming_phase_pass.t |
OCaml | hhvm/hphp/hack/src/naming/naming_validate_supportdyn.ml | (*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the "hack" directory of this source tree.
*
*)
open Hh_prelude
module Err = Naming_phase_error
module SN = Naming_special_names
module Env = struct
let is_hhi Naming_pha... |
OCaml Interface | hhvm/hphp/hack/src/naming/naming_validate_supportdyn.mli | (*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the "hack" directory of this source tree.
*
*)
(* This validation pass will warn when use of \\HH\\supportdyn. This pass
must be run before `everything-sdt` elaboration ... |
OCaml | hhvm/hphp/hack/src/naming/naming_validate_xhp_name.ml | (*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the "hack" directory of this source tree.
*
*)
open Hh_prelude
module Err = Naming_phase_error
let on_hint_ on_error hint_ ~ctx =
let err_opt =
match hint_ with
... |
OCaml Interface | hhvm/hphp/hack/src/naming/naming_validate_xhp_name.mli | (*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the "hack" directory of this source tree.
*
*)
(* This validation pass will raise errors when it encounters use of certain
miscased or errneous XHP related class names.
... |
OCaml | hhvm/hphp/hack/src/naming/nast.ml | (*
* Copyright (c) 2015, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the "hack" directory of this source tree.
*
*)
open Hh_prelude
open Aast
module SN = Naming_special_names
let show_tprim =
Naming_special_names.Typehints.(
... |
OCaml | hhvm/hphp/hack/src/naming/nast_eval.ml | (*
* Copyright (c) 2015, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the "hack" directory of this source tree.
*
*)
open Hh_prelude
open Aast
(* this should never be exposed / thrown outside of this module; translate
* it into a r... |
OCaml Interface | hhvm/hphp/hack/src/naming/nast_eval.mli | (*
* Copyright (c) 2015, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the "hack" directory of this source tree.
*
*)
open Hh_prelude
val static_string : Nast.expr -> (string, Pos.t) result |
TOML | hhvm/hphp/hack/src/naming/cargo/elaborate_namespaces/Cargo.toml | # @generated by autocargo
[package]
name = "elaborate_namespaces_visitor"
version = "0.0.0"
edition = "2021"
[lib]
path = "../../elaborate_namespaces_visitor.rs"
[dependencies]
core_utils_rust = { version = "0.0.0", path = "../../../utils/core" }
hash = { version = "0.0.0", path = "../../../utils/hash" }
lazy_static... |
TOML | hhvm/hphp/hack/src/naming/cargo/elab_ffi/Cargo.toml | # @generated by autocargo
[package]
name = "elab_ffi"
version = "0.0.0"
edition = "2021"
[lib]
path = "../../elab_ffi.rs"
test = false
doctest = false
crate-type = ["lib", "staticlib"]
[dependencies]
elab = { version = "0.0.0", path = "../../../elab" }
ocamlrep_ocamlpool = { version = "0.1.0", git = "https://github.... |
TOML | hhvm/hphp/hack/src/naming/cargo/naming_attributes/Cargo.toml | # @generated by autocargo
[package]
name = "naming_attributes_rust"
version = "0.0.0"
edition = "2021"
[lib]
path = "../../naming_attributes.rs"
[dependencies]
oxidized = { version = "0.0.0", path = "../../../oxidized" } |
TOML | hhvm/hphp/hack/src/naming/names_rust/Cargo.toml | # @generated by autocargo
[package]
name = "names"
version = "0.0.0"
edition = "2021"
[lib]
path = "names.rs"
[dependencies]
anyhow = "1.0.71"
crossbeam = "0.8"
hh24_types = { version = "0.0.0", path = "../../utils/hh24_types" }
oxidized = { version = "0.0.0", path = "../../oxidized" }
oxidized_by_ref = { version = ... |
Rust | hhvm/hphp/hack/src/naming/names_rust/datatypes.rs | // Copyright (c) Facebook, Inc. and its affiliates.
//
// This source code is licensed under the MIT license found in the
// LICENSE file in the "hack" directory of this source tree.
use std::collections::BTreeMap;
use std::collections::BTreeSet;
use std::path::PathBuf;
use oxidized::file_info::Mode;
use oxidized::fi... |
Rust | hhvm/hphp/hack/src/naming/names_rust/names.rs | // Copyright (c) Facebook, Inc. and its affiliates.
//
// This source code is licensed under the MIT license found in the
// LICENSE file in the "hack" directory of this source tree.
mod datatypes;
mod naming_sqlite;
mod summary;
pub use datatypes::FileInfoId;
pub use datatypes::SaveResult;
pub use naming_sqlite::Nam... |
Rust | hhvm/hphp/hack/src/naming/names_rust/naming_sqlite.rs | // Copyright (c) Facebook, Inc. and its affiliates.
//
// This source code is licensed under the MIT license found in the
// LICENSE file in the "hack" directory of this source tree.
use std::path::Path;
use anyhow::Context;
use hh24_types::Checksum;
use hh24_types::DeclHash;
use hh24_types::ToplevelCanonSymbolHash;
... |
Rust | hhvm/hphp/hack/src/naming/names_rust/summary.rs | // Copyright (c) Facebook, Inc. and its affiliates.
//
// This source code is licensed under the MIT license found in the
// LICENSE file in the "hack" directory of this source tree.
use hh24_types::DeclHash;
use hh24_types::FileDeclsHash;
use hh24_types::ToplevelCanonSymbolHash;
use hh24_types::ToplevelSymbolHash;
us... |
Rust | hhvm/hphp/hack/src/naming/rust/naming_types.rs | // Copyright (c) Facebook, Inc. and its affiliates.
//
// This source code is licensed under the MIT license found in the
// LICENSE file in the "hack" directory of this source tree.
//
// @generated <<SignedSource::*O*zOeWoEQle#+L!plEphiEmie@IsG>>
//
// To regenerate this file, run:
// hphp/hack/src/oxidized_regen.s... |
Rust | hhvm/hphp/hack/src/naming/rust/naming_types_lib.rs | // Copyright (c) Meta Platforms, Inc. and affiliates.
//
// This source code is licensed under the MIT license found in the
// LICENSE file in the "hack" directory of this source tree.
mod naming_types;
pub use naming_types::*; |
TOML | hhvm/hphp/hack/src/naming/rust/naming_types/Cargo.toml | # @generated by autocargo
[package]
name = "naming_types"
version = "0.0.0"
edition = "2021"
[lib]
path = "../naming_types_lib.rs"
[dependencies]
arena_deserializer = { version = "0.0.0", path = "../../../utils/arena_deserializer" }
arena_trait = { version = "0.0.0", path = "../../../arena_trait" }
eq_modulo_pos = {... |
hhvm/hphp/hack/src/ocamlrep_marshal/dune | (data_only_dirs cargo)
(library
(name ocamlrep_marshal_ffi)
(modules ocamlrep_marshal_ffi)
(wrapped false)
(c_library_flags -lpthread)
(foreign_archives ocamlrep_marshal_ffi_bindings))
(rule
(targets libocamlrep_marshal_ffi_bindings.a)
(deps
(source_tree %{workspace_root}/hack/src))
(locks cargo)
(act... | |
OCaml | hhvm/hphp/hack/src/ocamlrep_marshal/ocamlrep_marshal_ffi.ml | (*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the "hack" directory of this source tree.
*
*)
external to_string : 'a -> Marshal.extern_flags list -> string
= "ocamlrep_marshal_output_value_to_string"
external from_... |
Rust | hhvm/hphp/hack/src/ocamlrep_marshal/ocamlrep_marshal_ffi_bindings.rs | // Copyright (c) Meta Platforms, Inc. and affiliates.
//
// This source code is licensed under the MIT license found in the
// LICENSE file in the "hack" directory of this source tree.
use ocamlrep::FromOcamlRep;
type OcamlValue = usize;
#[no_mangle]
unsafe extern "C" fn ocamlrep_marshal_output_value_to_string(
... |
TOML | hhvm/hphp/hack/src/ocamlrep_marshal/cargo/ocamlrep_marshal_ffi_bindings/Cargo.toml | # @generated by autocargo
[package]
name = "ocamlrep_marshal_ffi_bindings"
version = "0.0.0"
edition = "2021"
[lib]
path = "../../ocamlrep_marshal_ffi_bindings.rs"
test = false
doctest = false
crate-type = ["lib", "staticlib"]
[dependencies]
ocamlrep = { version = "0.1.0", git = "https://github.com/facebook/ocamlrep... |
OCaml Interface | hhvm/hphp/hack/src/options/buildOptions.mli | (*
* Copyright (c) 2015, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the "hack" directory of this source tree.
*
*)
(**
* Where we look for system-wide configuration files.
*
* Possible values include:
* - "/etc": most linux sys... |
OCaml | hhvm/hphp/hack/src/options/declParserOptions.ml | (*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the "hack" directory of this source tree.
*
*)
type t = {
auto_namespace_map: (string * string) list;
disable_xhp_element_mangling: bool;
interpret_soft_types_as_like_... |
OCaml Interface | hhvm/hphp/hack/src/options/declParserOptions.mli | (*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the "hack" directory of this source tree.
*
*)
type t = {
auto_namespace_map: (string * string) list;
disable_xhp_element_mangling: bool;
interpret_soft_types_as_like_... |
OCaml | hhvm/hphp/hack/src/options/discover.ml | module C = Configurator.V1
let () =
let filename = "buildOptions.generated.ml" in
C.main ~name:"build_options" (fun (_ : C.t) ->
try
let sysconfdir = Sys.getenv "CMAKE_INSTALL_FULL_SYSCONFDIR"
and bindir = Sys.getenv "CMAKE_INSTALL_FULL_BINDIR" in
C.Flags.write_lines
filenam... |
hhvm/hphp/hack/src/options/dune | (library
(name global_options)
(wrapped false)
(modules globalOptions)
(libraries
collections
custom_error_types
package_info
saved_state_rollouts
utils_find)
(preprocess
(pps ppx_deriving.std)))
(library
(name saved_state_rollouts)
(wrapped false)
(modules saved_state_rollouts)
(libraries uti... | |
OCaml | hhvm/hphp/hack/src/options/gleanOptions.ml | (*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the "hack" directory of this source tree.
*
*)
[@@@warning "-33"]
open Hh_prelude
[@@@warning "+33"]
type t = GlobalOptions.t [@@deriving show]
let reponame t = t.Global... |
OCaml | hhvm/hphp/hack/src/options/globalOptions.ml | (*
* Copyright (c) 2015, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the "hack" directory of this source tree.
*
*)
[@@@warning "-33"]
open Hh_prelude
[@@@warning "+33"]
(* NOTE: this file is in the middle of a large refactoring.... |
OCaml Interface | hhvm/hphp/hack/src/options/globalOptions.mli | (*
* Copyright (c) 2015, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the "hack" directory of this source tree.
*
*)
type saved_state_loading = {
saved_state_manifold_api_key: string option;
(** A string from hh.conf. The API... |
OCaml | hhvm/hphp/hack/src/options/parserOptions.ml | (*
* Copyright (c) 2015, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the "hack" directory of this source tree.
*
*)
[@@@warning "-33"]
open Hh_prelude
[@@@warning "+33"]
type t = GlobalOptions.t [@@deriving show]
let auto_namesp... |
OCaml | hhvm/hphp/hack/src/options/saved_state_rollouts.ml | (*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the "hack" directory of this source tree.
*
*)
open Hh_prelude
type t = {
dummy_one: bool;
dummy_two: bool;
dummy_three: bool;
no_ancestor_edges: bool;
(** ... |
OCaml Interface | hhvm/hphp/hack/src/options/saved_state_rollouts.mli | (*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the "hack" directory of this source tree.
*
*)
type flag_name = string
type t = {
dummy_one: bool; (** Some documentation for dummy_one *)
dummy_two: bool; (** Some... |
OCaml | hhvm/hphp/hack/src/options/symbolWriteOptions.ml | (*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the "hack" directory of this source tree.
*
*)
[@@@warning "-33"]
open Hh_prelude
[@@@warning "+33"]
type t = GlobalOptions.t [@@deriving show]
let root_path t = t.Globa... |
OCaml | hhvm/hphp/hack/src/options/typecheckerOptions.ml | (*
* Copyright (c) 2015, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the "hack" directory of this source tree.
*
*)
open Hh_prelude
type t = GlobalOptions.t [@@deriving eq, show]
let num_local_workers t = t.GlobalOptions.tco_num_l... |
TOML | hhvm/hphp/hack/src/oxidized/Cargo.toml | # @generated by autocargo
[package]
name = "oxidized"
version = "0.0.0"
edition = "2021"
[lib]
path = "lib.rs"
[dependencies]
anyhow = "1.0.71"
arena_deserializer = { version = "0.0.0", path = "../utils/arena_deserializer" }
arena_trait = { version = "0.0.0", path = "../arena_trait" }
bitflags = "1.3"
bstr = { versi... |
Text | hhvm/hphp/hack/src/oxidized/copy_types.txt | aast_defs::Abstraction
aast_defs::ConstraintKind
aast_defs::EmitId
aast_defs::EnvAnnot
aast_defs::FuncReactive
aast_defs::FunKind
aast_defs::ImportFlavor
aast_defs::KvcKind
aast_defs::NsKind
aast_defs::OgNullFlavor
aast_defs::ParamMutability
aast_defs::PropOrMethod
aast_defs::ReadonlyKind
aast_defs::ReifyKind
aast_defs... |
Rust | hhvm/hphp/hack/src/oxidized/lib.rs | // Copyright (c) Facebook, Inc. and its affiliates.
//
// This source code is licensed under the MIT license found in the
// LICENSE file in the "hack" directory of this source tree.
#![feature(box_patterns)]
#![feature(drain_filter)]
#[macro_use]
extern crate rust_to_ocaml_attr;
pub use file_info;
pub use file_info:... |
Rust | hhvm/hphp/hack/src/oxidized/aast_visitor/mod.rs | // Copyright (c) 2019, Facebook, Inc.
// All rights reserved.
//
// This source code is licensed under the MIT license found in the
// LICENSE file in the "hack" directory of this source tree.
mod node;
mod node_impl;
mod node_impl_gen;
mod node_mut;
mod node_mut_impl_gen;
mod type_params;
mod visitor;
mod visitor_mut... |
Rust | hhvm/hphp/hack/src/oxidized/aast_visitor/node.rs | // Copyright (c) Meta Platforms, Inc. and affiliates.
//
// This source code is licensed under the MIT license found in the
// LICENSE file in the "hack" directory of this source tree.
//
// @generated SignedSource<<564a20aaccfb840fa9b957b355382b86>>
//
// To regenerate this file, run:
// hphp/hack/src/oxidized_regen... |
Rust | hhvm/hphp/hack/src/oxidized/aast_visitor/node_impl.rs | // Copyright (c) 2019, Facebook, Inc.
// All rights reserved.
//
// This source code is licensed under the MIT license found in the
// LICENSE file in the "hack" directory of this source tree.
use std::collections::BTreeMap;
use std::sync::Arc;
use itertools::Either;
use super::node::Node;
use super::node_mut::NodeMu... |
Rust | hhvm/hphp/hack/src/oxidized/aast_visitor/node_impl_gen.rs | // Copyright (c) Meta Platforms, Inc. and affiliates.
//
// This source code is licensed under the MIT license found in the
// LICENSE file in the "hack" directory of this source tree.
//
// @generated SignedSource<<6e0fca1a4e5337d8a6a4f923ea6e3bbb>>
//
// To regenerate this file, run:
// hphp/hack/src/oxidized_regen... |
Rust | hhvm/hphp/hack/src/oxidized/aast_visitor/node_mut.rs | // Copyright (c) Meta Platforms, Inc. and affiliates.
//
// This source code is licensed under the MIT license found in the
// LICENSE file in the "hack" directory of this source tree.
//
// @generated SignedSource<<ce75384299532973a96540a6d25d4b7b>>
//
// To regenerate this file, run:
// hphp/hack/src/oxidized_regen... |
Rust | hhvm/hphp/hack/src/oxidized/aast_visitor/node_mut_impl_gen.rs | // Copyright (c) Meta Platforms, Inc. and affiliates.
//
// This source code is licensed under the MIT license found in the
// LICENSE file in the "hack" directory of this source tree.
//
// @generated SignedSource<<c29487fccaaf7af9e4ae42aed1d6fd58>>
//
// To regenerate this file, run:
// hphp/hack/src/oxidized_regen... |
Rust | hhvm/hphp/hack/src/oxidized/aast_visitor/type_params.rs | // Copyright (c) Meta Platforms, Inc. and affiliates.
//
// This source code is licensed under the MIT license found in the
// LICENSE file in the "hack" directory of this source tree.
//
// @generated SignedSource<<ebc921d10d8d69681cbb2e890c14dca7>>
//
// To regenerate this file, run:
// hphp/hack/src/oxidized_regen... |
Rust | hhvm/hphp/hack/src/oxidized/aast_visitor/visitor.rs | // Copyright (c) Meta Platforms, Inc. and affiliates.
//
// This source code is licensed under the MIT license found in the
// LICENSE file in the "hack" directory of this source tree.
//
// @generated SignedSource<<4f35e079ad72abd142dbbda23b95e5ad>>
//
// To regenerate this file, run:
// hphp/hack/src/oxidized_regen... |
Rust | hhvm/hphp/hack/src/oxidized/aast_visitor/visitor_mut.rs | // Copyright (c) Meta Platforms, Inc. and affiliates.
//
// This source code is licensed under the MIT license found in the
// LICENSE file in the "hack" directory of this source tree.
//
// @generated SignedSource<<420653060b681d7804a8294223711ed2>>
//
// To regenerate this file, run:
// hphp/hack/src/oxidized_regen... |
Rust | hhvm/hphp/hack/src/oxidized/asts/ast.rs | // Copyright (c) Meta Platforms, Inc. and affiliates.
//
// This source code is licensed under the MIT license found in the
// LICENSE file in the "hack" directory of this source tree.
//
// @generated SignedSource<<2aac5de012416a3ef9b43c670a1db6a6>>
//
// To regenerate this file, run:
// hphp/hack/src/oxidized_regen... |
Rust | hhvm/hphp/hack/src/oxidized/asts/mod.rs | // Copyright (c) Meta Platforms, Inc. and affiliates.
//
// This source code is licensed under the MIT license found in the
// LICENSE file in the "hack" directory of this source tree.
pub mod ast;
pub mod nast; |
Rust | hhvm/hphp/hack/src/oxidized/asts/nast.rs | // Copyright (c) Meta Platforms, Inc. and affiliates.
//
// This source code is licensed under the MIT license found in the
// LICENSE file in the "hack" directory of this source tree.
//
// @generated SignedSource<<2aac5de012416a3ef9b43c670a1db6a6>>
//
// To regenerate this file, run:
// hphp/hack/src/oxidized_regen... |
Rust | hhvm/hphp/hack/src/oxidized/gen/aast_defs.rs | // Copyright (c) Facebook, Inc. and its affiliates.
//
// This source code is licensed under the MIT license found in the
// LICENSE file in the "hack" directory of this source tree.
//
// @generated SignedSource<<edc37d984fd8ec5d2942273f5f4672f3>>
//
// To regenerate this file, run:
// hphp/hack/src/oxidized_regen.s... |
Rust | hhvm/hphp/hack/src/oxidized/gen/ast_defs.rs | // Copyright (c) Facebook, Inc. and its affiliates.
//
// This source code is licensed under the MIT license found in the
// LICENSE file in the "hack" directory of this source tree.
//
// @generated SignedSource<<35cc4f1b22122b4bb190e7ba988a539c>>
//
// To regenerate this file, run:
// hphp/hack/src/oxidized_regen.s... |
Rust | hhvm/hphp/hack/src/oxidized/gen/custom_error.rs | // Copyright (c) Facebook, Inc. and its affiliates.
//
// This source code is licensed under the MIT license found in the
// LICENSE file in the "hack" directory of this source tree.
//
// @generated SignedSource<<21d7e4c3bfe77c569d0f04153ff2376e>>
//
// To regenerate this file, run:
// hphp/hack/src/oxidized_regen.s... |
Rust | hhvm/hphp/hack/src/oxidized/gen/custom_error_config.rs | // Copyright (c) Facebook, Inc. and its affiliates.
//
// This source code is licensed under the MIT license found in the
// LICENSE file in the "hack" directory of this source tree.
//
// @generated SignedSource<<23cde003bbf25dd2db8f59e068868701>>
//
// To regenerate this file, run:
// hphp/hack/src/oxidized_regen.s... |
Rust | hhvm/hphp/hack/src/oxidized/gen/decl_defs.rs | // Copyright (c) Facebook, Inc. and its affiliates.
//
// This source code is licensed under the MIT license found in the
// LICENSE file in the "hack" directory of this source tree.
//
// @generated SignedSource<<28ffdac0faf3877e2a9c2ca86cc3ecaf>>
//
// To regenerate this file, run:
// hphp/hack/src/oxidized_regen.s... |
Rust | hhvm/hphp/hack/src/oxidized/gen/decl_parser_options.rs | // Copyright (c) Facebook, Inc. and its affiliates.
//
// This source code is licensed under the MIT license found in the
// LICENSE file in the "hack" directory of this source tree.
//
// @generated SignedSource<<57c9b779b0ec52945779422503ca4b98>>
//
// To regenerate this file, run:
// hphp/hack/src/oxidized_regen.s... |
Rust | hhvm/hphp/hack/src/oxidized/gen/decl_reference.rs | // Copyright (c) Facebook, Inc. and its affiliates.
//
// This source code is licensed under the MIT license found in the
// LICENSE file in the "hack" directory of this source tree.
//
// @generated SignedSource<<e66086795fe07dbfe4e984bc27523d63>>
//
// To regenerate this file, run:
// hphp/hack/src/oxidized_regen.s... |
Rust | hhvm/hphp/hack/src/oxidized/gen/errors.rs | // Copyright (c) Facebook, Inc. and its affiliates.
//
// This source code is licensed under the MIT license found in the
// LICENSE file in the "hack" directory of this source tree.
//
// @generated SignedSource<<5a8948409116c0733a0e4026cc831695>>
//
// To regenerate this file, run:
// hphp/hack/src/oxidized_regen.s... |
Rust | hhvm/hphp/hack/src/oxidized/gen/error_codes.rs | // Copyright (c) Facebook, Inc. and its affiliates.
//
// This source code is licensed under the MIT license found in the
// LICENSE file in the "hack" directory of this source tree.
//
// @generated SignedSource<<357d32b1bbe055683000607f25c697c6>>
//
// To regenerate this file, run:
// hphp/hack/src/oxidized_regen.s... |
Rust | hhvm/hphp/hack/src/oxidized/gen/error_message.rs | // Copyright (c) Facebook, Inc. and its affiliates.
//
// This source code is licensed under the MIT license found in the
// LICENSE file in the "hack" directory of this source tree.
//
// @generated SignedSource<<9e36fbd802f8f66076c72fbf37654300>>
//
// To regenerate this file, run:
// hphp/hack/src/oxidized_regen.s... |
Rust | hhvm/hphp/hack/src/oxidized/gen/full_fidelity_parser_env.rs | // Copyright (c) Facebook, Inc. and its affiliates.
//
// This source code is licensed under the MIT license found in the
// LICENSE file in the "hack" directory of this source tree.
//
// @generated SignedSource<<e9ff81cafe703dfddceae1bdb97e42c6>>
//
// To regenerate this file, run:
// hphp/hack/src/oxidized_regen.s... |
Rust | hhvm/hphp/hack/src/oxidized/gen/global_options.rs | // Copyright (c) Facebook, Inc. and its affiliates.
//
// This source code is licensed under the MIT license found in the
// LICENSE file in the "hack" directory of this source tree.
//
// @generated SignedSource<<ed95ac32a5dc74297215fec5b52be1b0>>
//
// To regenerate this file, run:
// hphp/hack/src/oxidized_regen.s... |
Rust | hhvm/hphp/hack/src/oxidized/gen/map_reduce_ffi.rs | // Copyright (c) Facebook, Inc. and its affiliates.
//
// This source code is licensed under the MIT license found in the
// LICENSE file in the "hack" directory of this source tree.
//
// @generated SignedSource<<2c86c365e82c3003f77c086986d15c54>>
//
// To regenerate this file, run:
// hphp/hack/src/oxidized_regen.s... |
Rust | hhvm/hphp/hack/src/oxidized/gen/message.rs | // Copyright (c) Facebook, Inc. and its affiliates.
//
// This source code is licensed under the MIT license found in the
// LICENSE file in the "hack" directory of this source tree.
//
// @generated SignedSource<<9c27bc0a3a9372cc14f5cd546ef552c7>>
//
// To regenerate this file, run:
// hphp/hack/src/oxidized_regen.s... |
Rust | hhvm/hphp/hack/src/oxidized/gen/mod.rs | // Copyright (c) Facebook, Inc. and its affiliates.
//
// This source code is licensed under the MIT license found in the
// LICENSE file in the "hack" directory of this source tree.
//
// @generated SignedSource<<a2edf3fe9dfb136554dd12f181d5f7f6>>
//
// To regenerate this file, run:
// hphp/hack/src/oxidized_regen.s... |
Rust | hhvm/hphp/hack/src/oxidized/gen/namespace_env.rs | // Copyright (c) Facebook, Inc. and its affiliates.
//
// This source code is licensed under the MIT license found in the
// LICENSE file in the "hack" directory of this source tree.
//
// @generated SignedSource<<7eaa338ed3e31bf3b77b0e82f09c5c03>>
//
// To regenerate this file, run:
// hphp/hack/src/oxidized_regen.s... |
Rust | hhvm/hphp/hack/src/oxidized/gen/name_context.rs | // Copyright (c) Facebook, Inc. and its affiliates.
//
// This source code is licensed under the MIT license found in the
// LICENSE file in the "hack" directory of this source tree.
//
// @generated SignedSource<<63697d94ce0ab2e6fdd7d7a4753a7fe9>>
//
// To regenerate this file, run:
// hphp/hack/src/oxidized_regen.s... |
Rust | hhvm/hphp/hack/src/oxidized/gen/naming_error.rs | // Copyright (c) Facebook, Inc. and its affiliates.
//
// This source code is licensed under the MIT license found in the
// LICENSE file in the "hack" directory of this source tree.
//
// @generated SignedSource<<300986842c3e4c9ed96b1db608bbb336>>
//
// To regenerate this file, run:
// hphp/hack/src/oxidized_regen.s... |
Rust | hhvm/hphp/hack/src/oxidized/gen/naming_phase_error.rs | // Copyright (c) Facebook, Inc. and its affiliates.
//
// This source code is licensed under the MIT license found in the
// LICENSE file in the "hack" directory of this source tree.
//
// @generated SignedSource<<e6d3dee33c6bcc3772beebf38708506b>>
//
// To regenerate this file, run:
// hphp/hack/src/oxidized_regen.s... |
Rust | hhvm/hphp/hack/src/oxidized/gen/nast_check_error.rs | // Copyright (c) Facebook, Inc. and its affiliates.
//
// This source code is licensed under the MIT license found in the
// LICENSE file in the "hack" directory of this source tree.
//
// @generated SignedSource<<627c906c3afc284fc1345b0b17258d0b>>
//
// To regenerate this file, run:
// hphp/hack/src/oxidized_regen.s... |
Rust | hhvm/hphp/hack/src/oxidized/gen/package.rs | // Copyright (c) Facebook, Inc. and its affiliates.
//
// This source code is licensed under the MIT license found in the
// LICENSE file in the "hack" directory of this source tree.
//
// @generated SignedSource<<d1e5e6bf962ad33870bdc8cb8df5f08a>>
//
// To regenerate this file, run:
// hphp/hack/src/oxidized_regen.s... |
Rust | hhvm/hphp/hack/src/oxidized/gen/package_info.rs | // Copyright (c) Facebook, Inc. and its affiliates.
//
// This source code is licensed under the MIT license found in the
// LICENSE file in the "hack" directory of this source tree.
//
// @generated SignedSource<<c5974392a883cd6439e78cd9c68d221f>>
//
// To regenerate this file, run:
// hphp/hack/src/oxidized_regen.s... |
Rust | hhvm/hphp/hack/src/oxidized/gen/parser_options.rs | // Copyright (c) Facebook, Inc. and its affiliates.
//
// This source code is licensed under the MIT license found in the
// LICENSE file in the "hack" directory of this source tree.
//
// @generated SignedSource<<7fc1198d132ca572d3e65e375e4abb8d>>
//
// To regenerate this file, run:
// hphp/hack/src/oxidized_regen.s... |
Rust | hhvm/hphp/hack/src/oxidized/gen/parsing_error.rs | // Copyright (c) Facebook, Inc. and its affiliates.
//
// This source code is licensed under the MIT license found in the
// LICENSE file in the "hack" directory of this source tree.
//
// @generated SignedSource<<1678040748804598fcbd6f77f10174a4>>
//
// To regenerate this file, run:
// hphp/hack/src/oxidized_regen.s... |
Rust | hhvm/hphp/hack/src/oxidized/gen/patt_binding_ty.rs | // Copyright (c) Facebook, Inc. and its affiliates.
//
// This source code is licensed under the MIT license found in the
// LICENSE file in the "hack" directory of this source tree.
//
// @generated SignedSource<<acf24b460a12454a077abf53cc96851c>>
//
// To regenerate this file, run:
// hphp/hack/src/oxidized_regen.s... |
Rust | hhvm/hphp/hack/src/oxidized/gen/patt_error.rs | // Copyright (c) Facebook, Inc. and its affiliates.
//
// This source code is licensed under the MIT license found in the
// LICENSE file in the "hack" directory of this source tree.
//
// @generated SignedSource<<c5592265f8d5e918ba1feb0a4b5de323>>
//
// To regenerate this file, run:
// hphp/hack/src/oxidized_regen.s... |
Rust | hhvm/hphp/hack/src/oxidized/gen/patt_locl_ty.rs | // Copyright (c) Facebook, Inc. and its affiliates.
//
// This source code is licensed under the MIT license found in the
// LICENSE file in the "hack" directory of this source tree.
//
// @generated SignedSource<<d8f37fdd1f7d06a03fdce08710c86926>>
//
// To regenerate this file, run:
// hphp/hack/src/oxidized_regen.s... |
Rust | hhvm/hphp/hack/src/oxidized/gen/patt_name.rs | // Copyright (c) Facebook, Inc. and its affiliates.
//
// This source code is licensed under the MIT license found in the
// LICENSE file in the "hack" directory of this source tree.
//
// @generated SignedSource<<4eeb7dbc16be777c80d441f52e0bb2ad>>
//
// To regenerate this file, run:
// hphp/hack/src/oxidized_regen.s... |
Rust | hhvm/hphp/hack/src/oxidized/gen/patt_string.rs | // Copyright (c) Facebook, Inc. and its affiliates.
//
// This source code is licensed under the MIT license found in the
// LICENSE file in the "hack" directory of this source tree.
//
// @generated SignedSource<<1c17c1fbe87ff8f8cb78f33d532a98d5>>
//
// To regenerate this file, run:
// hphp/hack/src/oxidized_regen.s... |
Rust | hhvm/hphp/hack/src/oxidized/gen/patt_var.rs | // Copyright (c) Facebook, Inc. and its affiliates.
//
// This source code is licensed under the MIT license found in the
// LICENSE file in the "hack" directory of this source tree.
//
// @generated SignedSource<<cd8dd24def8515c11985286234166c74>>
//
// To regenerate this file, run:
// hphp/hack/src/oxidized_regen.s... |
Rust | hhvm/hphp/hack/src/oxidized/gen/pos_or_decl.rs | // Copyright (c) Facebook, Inc. and its affiliates.
//
// This source code is licensed under the MIT license found in the
// LICENSE file in the "hack" directory of this source tree.
//
// @generated SignedSource<<8d2052eb81b85e22c5a4a7091a4fd1e0>>
//
// To regenerate this file, run:
// hphp/hack/src/oxidized_regen.s... |
Rust | hhvm/hphp/hack/src/oxidized/gen/quickfix.rs | // Copyright (c) Facebook, Inc. and its affiliates.
//
// This source code is licensed under the MIT license found in the
// LICENSE file in the "hack" directory of this source tree.
//
// @generated SignedSource<<b63800277691d071702e9766e3aced3f>>
//
// To regenerate this file, run:
// hphp/hack/src/oxidized_regen.s... |
Rust | hhvm/hphp/hack/src/oxidized/gen/saved_state_rollouts.rs | // Copyright (c) Facebook, Inc. and its affiliates.
//
// This source code is licensed under the MIT license found in the
// LICENSE file in the "hack" directory of this source tree.
//
// @generated SignedSource<<15a97c8d9f4b11bae56a55ae2d2844d1>>
//
// To regenerate this file, run:
// hphp/hack/src/oxidized_regen.s... |
Rust | hhvm/hphp/hack/src/oxidized/gen/scoured_comments.rs | // Copyright (c) Facebook, Inc. and its affiliates.
//
// This source code is licensed under the MIT license found in the
// LICENSE file in the "hack" directory of this source tree.
//
// @generated SignedSource<<3fdb8c1302f09458fa1a840adedbe616>>
//
// To regenerate this file, run:
// hphp/hack/src/oxidized_regen.s... |
Rust | hhvm/hphp/hack/src/oxidized/gen/search_types.rs | // Copyright (c) Facebook, Inc. and its affiliates.
//
// This source code is licensed under the MIT license found in the
// LICENSE file in the "hack" directory of this source tree.
//
// @generated SignedSource<<b9427dadb5d4875fbf6a17be59d13dd6>>
//
// To regenerate this file, run:
// hphp/hack/src/oxidized_regen.s... |
Rust | hhvm/hphp/hack/src/oxidized/gen/shallow_decl_defs.rs | // Copyright (c) Facebook, Inc. and its affiliates.
//
// This source code is licensed under the MIT license found in the
// LICENSE file in the "hack" directory of this source tree.
//
// @generated SignedSource<<9ab56fde3066f4a8f97d567a995455e6>>
//
// To regenerate this file, run:
// hphp/hack/src/oxidized_regen.s... |
Rust | hhvm/hphp/hack/src/oxidized/gen/tast.rs | // Copyright (c) Facebook, Inc. and its affiliates.
//
// This source code is licensed under the MIT license found in the
// LICENSE file in the "hack" directory of this source tree.
//
// @generated SignedSource<<2537c375f61a4ae9338b381b0392ceb7>>
//
// To regenerate this file, run:
// hphp/hack/src/oxidized_regen.s... |
Rust | hhvm/hphp/hack/src/oxidized/gen/tast_hashes.rs | // Copyright (c) Facebook, Inc. and its affiliates.
//
// This source code is licensed under the MIT license found in the
// LICENSE file in the "hack" directory of this source tree.
//
// @generated SignedSource<<62a4b4361a1bf89fdd0a6b50f296c41b>>
//
// To regenerate this file, run:
// hphp/hack/src/oxidized_regen.s... |
Rust | hhvm/hphp/hack/src/oxidized/gen/tast_with_dynamic.rs | // Copyright (c) Facebook, Inc. and its affiliates.
//
// This source code is licensed under the MIT license found in the
// LICENSE file in the "hack" directory of this source tree.
//
// @generated SignedSource<<e44be98972553b91c29584e4d15e15a8>>
//
// To regenerate this file, run:
// hphp/hack/src/oxidized_regen.s... |
Rust | hhvm/hphp/hack/src/oxidized/gen/typechecker_options.rs | // Copyright (c) Facebook, Inc. and its affiliates.
//
// This source code is licensed under the MIT license found in the
// LICENSE file in the "hack" directory of this source tree.
//
// @generated SignedSource<<dc5dab05b6cc9c8adf36e0c9a8eef62e>>
//
// To regenerate this file, run:
// hphp/hack/src/oxidized_regen.s... |
Rust | hhvm/hphp/hack/src/oxidized/gen/type_counter.rs | // Copyright (c) Facebook, Inc. and its affiliates.
//
// This source code is licensed under the MIT license found in the
// LICENSE file in the "hack" directory of this source tree.
//
// @generated SignedSource<<ab6b6d2cb8c6f5937164b90ee6438ad7>>
//
// To regenerate this file, run:
// hphp/hack/src/oxidized_regen.s... |
Rust | hhvm/hphp/hack/src/oxidized/gen/type_parameter_env.rs | // Copyright (c) Facebook, Inc. and its affiliates.
//
// This source code is licensed under the MIT license found in the
// LICENSE file in the "hack" directory of this source tree.
//
// @generated SignedSource<<1c72b3e9cd571f1c5601e290720fd784>>
//
// To regenerate this file, run:
// hphp/hack/src/oxidized_regen.s... |
Rust | hhvm/hphp/hack/src/oxidized/gen/typing_defs.rs | // Copyright (c) Facebook, Inc. and its affiliates.
//
// This source code is licensed under the MIT license found in the
// LICENSE file in the "hack" directory of this source tree.
//
// @generated SignedSource<<a4ea892034ea9ce01ec09ff8408915d0>>
//
// To regenerate this file, run:
// hphp/hack/src/oxidized_regen.s... |
Rust | hhvm/hphp/hack/src/oxidized/gen/typing_defs_core.rs | // Copyright (c) Facebook, Inc. and its affiliates.
//
// This source code is licensed under the MIT license found in the
// LICENSE file in the "hack" directory of this source tree.
//
// @generated SignedSource<<81c31c27f343f2346da69ae759110c41>>
//
// To regenerate this file, run:
// hphp/hack/src/oxidized_regen.s... |
Rust | hhvm/hphp/hack/src/oxidized/gen/typing_inference_env.rs | // Copyright (c) Facebook, Inc. and its affiliates.
//
// This source code is licensed under the MIT license found in the
// LICENSE file in the "hack" directory of this source tree.
//
// @generated SignedSource<<ba21efeda98faf3c4f8ea31dd4ed1126>>
//
// To regenerate this file, run:
// hphp/hack/src/oxidized_regen.s... |
Rust | hhvm/hphp/hack/src/oxidized/gen/typing_kinding_defs.rs | // Copyright (c) Facebook, Inc. and its affiliates.
//
// This source code is licensed under the MIT license found in the
// LICENSE file in the "hack" directory of this source tree.
//
// @generated SignedSource<<c06edcc010b7eee5192eeb56385bb099>>
//
// To regenerate this file, run:
// hphp/hack/src/oxidized_regen.s... |
Rust | hhvm/hphp/hack/src/oxidized/gen/typing_reason.rs | // Copyright (c) Facebook, Inc. and its affiliates.
//
// This source code is licensed under the MIT license found in the
// LICENSE file in the "hack" directory of this source tree.
//
// @generated SignedSource<<17302596369fbcaef60c319d605205d2>>
//
// To regenerate this file, run:
// hphp/hack/src/oxidized_regen.s... |
Rust | hhvm/hphp/hack/src/oxidized/gen/typing_tyvar_occurrences.rs | // Copyright (c) Facebook, Inc. and its affiliates.
//
// This source code is licensed under the MIT license found in the
// LICENSE file in the "hack" directory of this source tree.
//
// @generated SignedSource<<cb137456b0c8764f51c2e5436e795506>>
//
// To regenerate this file, run:
// hphp/hack/src/oxidized_regen.s... |
Rust | hhvm/hphp/hack/src/oxidized/gen/user_error.rs | // Copyright (c) Facebook, Inc. and its affiliates.
//
// This source code is licensed under the MIT license found in the
// LICENSE file in the "hack" directory of this source tree.
//
// @generated SignedSource<<dd596b63609e073e5d38abaed07cc27d>>
//
// To regenerate this file, run:
// hphp/hack/src/oxidized_regen.s... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.