Use absolute path to RESERVED_KEYWORDS

This commit is contained in:
Michael Miller 2022-03-19 22:00:12 -06:00
parent b23a567ee3
commit 03a031ad38
No known key found for this signature in database
GPG key ID: 32B47AE8F388A1FF

View file

@ -316,7 +316,7 @@ module Spectator
{% for method in type.methods.reject do |meth|
meth.name.starts_with?("_spectator") ||
DSL::RESERVED_KEYWORDS.includes?(meth.name.symbolize)
::Spectator::DSL::RESERVED_KEYWORDS.includes?(meth.name.symbolize)
end %}
{{style.id}} {{method}}
{% end %}