# New Ticket Created by  Will Coleda 
# Please include the string:  [perl #55586]
# in the subject line of all future correspondence about this issue. 
# <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=55586 >


This code:
$ cat tclsh.pir
.HLL 'Tcl', 'tcl_group'

.sub main :main
  .param pmc argv
  foo(argv)
.end

.sub foo
  .param pmc args :slurpy
  $S0 = typeof args
  say $S0
.end

Used to say, some time ago:

TclList.

Now it says

ResizablePMCArray

Looks like "get_HLL_type" (defined in src/hll.c) isn't used anywhere
outside of registering a new HLL type; it should be used.

I had to do some bugfixes on partcl some months back to work around
this, but didn't realize the source of the issue. This was also
recently mentioned in regards to rakudo development.

-- 
Will "Coke" Coleda

Reply via email to