We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This will help with better Elixir errors:
When annotations is false, we get no line number:
Annotations: true
The text was updated successfully, but these errors were encountered:
@NduatiK is this still a valid issue?
Sorry, something went wrong.
I believe so, but it is now related to #50. If we reference an undefined variable in EEx we get the following:
~SHEET""" "color-number-" <> num do rule-1 rule-2<%= number %> end ...
error: undefined variable "number" │ 2 │ use LiveViewNative.Stylesheet, :mock │ ^^^^^^ │ └─ test/support/mock_sheet.ex:2:11: MockSheet.class/2
The error does not point us to the specific line with an undefined variable.
Same thing with RULES:
def class("color-blue", target: :watch) do ~RULES""" rule-2<%= number %> """ end
error: undefined variable "number" │ 1 │ defmodule MockSheet do │ ^^^^^^ │ └─ test/support/mock_sheet.ex:1:11: MockSheet.class/2
NduatiK
No branches or pull requests
This will help with better Elixir errors:
When annotations is false, we get no line number:
Annotations: true
The text was updated successfully, but these errors were encountered: