mirror of
https://gitea.invidious.io/iv-org/shard-spectator.git
synced 2024-08-15 00:53:35 +00:00
Ensure top-level Crystal types are used
This commit is contained in:
parent
c4a97230f1
commit
34060ce181
1 changed files with 2 additions and 2 deletions
|
@ -716,8 +716,8 @@ module Spectator
|
|||
{% raise "Undefined local variable or method '#{call}'" %}
|
||||
{% end %}
|
||||
|
||||
descriptor = { {{method_name}}: Tuple.new({{call.args.splat}}) }
|
||||
label = String::Builder.new({{method_name.stringify}})
|
||||
descriptor = { {{method_name}}: ::Tuple.new({{call.args.splat}}) }
|
||||
label = ::String::Builder.new({{method_name.stringify}})
|
||||
{% unless call.args.empty? %}
|
||||
label << '('
|
||||
{% for arg, index in call.args %}
|
||||
|
|
Loading…
Reference in a new issue