Skip to content

Commit 7a01165

Browse files
authored
Add missing compiler option (#12602)
1 parent 755c839 commit 7a01165

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/elixir/lib/code.ex

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,8 @@ defmodule Code do
221221

222222
@list_compiler_options [:no_warn_undefined, :tracers, :parser_options]
223223

224-
@available_compiler_options @boolean_compiler_options ++ @list_compiler_options
224+
@available_compiler_options @boolean_compiler_options ++
225+
@list_compiler_options ++ [:on_undefined_variable]
225226

226227
@doc """
227228
Lists all required files.

0 commit comments

Comments
 (0)