Skip to content
Merged
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 lib/elixir_sense/core/compiler.ex
Original file line number Diff line number Diff line change
Expand Up @@ -1768,7 +1768,7 @@
state = State.new_func_vars_scope(state)

# elixir dispatches callbacks by raw dispatch and eval_forms
# instead we expand a bock with require and possibly expand macros
# instead we expand a block with require and possibly expand macros
# we do not attempt to exec function callbacks
args =
case attribute do
Expand Down Expand Up @@ -2230,7 +2230,7 @@
# defmodule Elixir.Alias
if Version.match?(System.version(), "< 1.16.0-dev") do
# see https://github.com/elixir-lang/elixir/pull/12451#issuecomment-1461393633
defp alias_defmodule({:__aliases__, meta, [:"Elixir", t] = x}, module, env) do

Check warning on line 2233 in lib/elixir_sense/core/compiler.ex

View workflow job for this annotation

GitHub Actions / mix test windows (Elixir 1.15.x | Erlang/OTP 24.x)

variable "x" is unused (if the variable is not meant to be used, prefix it with an underscore)

Check warning on line 2233 in lib/elixir_sense/core/compiler.ex

View workflow job for this annotation

GitHub Actions / mix test windows (Elixir 1.14.x | Erlang/OTP 26.x)

variable "x" is unused (if the variable is not meant to be used, prefix it with an underscore)

Check warning on line 2233 in lib/elixir_sense/core/compiler.ex

View workflow job for this annotation

GitHub Actions / mix test windows (Elixir 1.14.x | Erlang/OTP 23.x)

variable "x" is unused (if the variable is not meant to be used, prefix it with an underscore)

Check warning on line 2233 in lib/elixir_sense/core/compiler.ex

View workflow job for this annotation

GitHub Actions / mix test windows (Elixir 1.15.x | Erlang/OTP 25.x)

variable "x" is unused (if the variable is not meant to be used, prefix it with an underscore)

Check warning on line 2233 in lib/elixir_sense/core/compiler.ex

View workflow job for this annotation

GitHub Actions / mix test (Elixir 1.14.x | Erlang/OTP 24.x)

variable "x" is unused (if the variable is not meant to be used, prefix it with an underscore)

Check warning on line 2233 in lib/elixir_sense/core/compiler.ex

View workflow job for this annotation

GitHub Actions / mix test windows (Elixir 1.14.x | Erlang/OTP 25.x)

variable "x" is unused (if the variable is not meant to be used, prefix it with an underscore)

Check warning on line 2233 in lib/elixir_sense/core/compiler.ex

View workflow job for this annotation

GitHub Actions / mix test windows (Elixir 1.14.x | Erlang/OTP 24.x)

variable "x" is unused (if the variable is not meant to be used, prefix it with an underscore)

Check warning on line 2233 in lib/elixir_sense/core/compiler.ex

View workflow job for this annotation

GitHub Actions / mix test (Elixir 1.14.x | Erlang/OTP 26.x)

variable "x" is unused (if the variable is not meant to be used, prefix it with an underscore)

Check warning on line 2233 in lib/elixir_sense/core/compiler.ex

View workflow job for this annotation

GitHub Actions / mix test (Elixir 1.15.x | Erlang/OTP 24.x)

variable "x" is unused (if the variable is not meant to be used, prefix it with an underscore)

Check warning on line 2233 in lib/elixir_sense/core/compiler.ex

View workflow job for this annotation

GitHub Actions / mix test windows (Elixir 1.15.x | Erlang/OTP 26.x)

variable "x" is unused (if the variable is not meant to be used, prefix it with an underscore)

Check warning on line 2233 in lib/elixir_sense/core/compiler.ex

View workflow job for this annotation

GitHub Actions / mix test (Elixir 1.14.x | Erlang/OTP 25.x)

variable "x" is unused (if the variable is not meant to be used, prefix it with an underscore)

Check warning on line 2233 in lib/elixir_sense/core/compiler.ex

View workflow job for this annotation

GitHub Actions / mix test (Elixir 1.15.x | Erlang/OTP 26.x)

variable "x" is unused (if the variable is not meant to be used, prefix it with an underscore)

Check warning on line 2233 in lib/elixir_sense/core/compiler.ex

View workflow job for this annotation

GitHub Actions / mix test (Elixir 1.15.x | Erlang/OTP 25.x)

variable "x" is unused (if the variable is not meant to be used, prefix it with an underscore)
alias = String.to_atom("Elixir." <> Atom.to_string(t))
{:ok, env} = NormalizedMacroEnv.define_alias(env, meta, alias, as: alias, trace: true)
{module, env}
Expand Down
Loading