asedunov / intellij-crystal-lang

An IntelliJ plugin for Crystal language
Apache License 2.0
39 stars 5 forks source link

Implement expansion of top-level macro calls #46

Open asedunov opened 1 year ago

asedunov commented 1 year ago

E.g. X should be resolvable here:

macro foo
  class X

  end
end

foo

x = X.new