Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion jscomp/all.depend
Original file line number Diff line number Diff line change
Expand Up @@ -532,7 +532,7 @@ core/lam_eta_conversion.cmx : ext/literals.cmx core/lam.cmx ext/ext_list.cmx \
ext/ext_ident.cmx core/lam_eta_conversion.cmi
core/lam_group.cmx : core/lam_print.cmx core/lam.cmx core/lam_group.cmi
core/lam_pass_deep_flatten.cmx : core/lam_util.cmx core/lam_group.cmx \
core/lam.cmx core/js_number.cmx ext/ident_set.cmx ext/ext_list.cmx \
core/lam.cmx ext/int_map.cmx ext/ident_set.cmx ext/ext_list.cmx \
core/lam_pass_deep_flatten.cmi
core/js_stmt_make.cmx : core/lam_print.cmx core/lam.cmx core/js_exp_make.cmx \
core/js_closure.cmx core/js_analyzer.cmx core/j.cmx ext/ext_list.cmx \
Expand Down
20 changes: 10 additions & 10 deletions jscomp/core/bs_conditional_initial.ml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
(* Copyright (C) 2015-2016 Bloomberg Finance L.P.
*
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
Expand All @@ -17,22 +17,22 @@
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *)


let setup_env () =
#if BS_DEBUG then
Js_config.set_debug_file "gpr_2413_test.ml";
#end
let setup_env () =
#if BS_DEBUG then
Js_config.set_debug_file "tuple_alloc.ml";
#end
Lexer.replace_directive_bool "BS" true;
Lexer.replace_directive_string "BS_VERSION" Bs_version.version

let standard_library =
#if BS_DEBUG then
let standard_library =
#if BS_DEBUG then
Filename.concat (Filename.dirname Sys.executable_name) "ocaml"
#else
#else
Config.standard_library
#end
#end
Loading