vshaxe / hashlink-debugger

Visual Studio Code Debugger for Haxe/HashLink applications
https://hashlink.haxe.org/
MIT License
57 stars 23 forks source link

Identifier 'HPacked' is not part of format.hl.HLType #114

Closed Akselmo closed 1 year ago

Akselmo commented 1 year ago

Hi, I'm trying to build hashlink-debugger. I get the following error on build from master branch.

> haxe build.hxml

hld/Module.hx:192: characters 10-17 : Identifier 'HPacked' is not part of format.hl.HLType
hld/Module.hx:192: characters 10-20 : Unrecognized pattern: HPacked(t)
hld/Module.hx:214: characters 9-16 : Identifier 'HPacked' is not part of format.hl.HLType
hld/Module.hx:214: characters 9-36 : Unrecognized pattern: HPacked({ v : HStruct(o) })
hld/Eval.hx:855: characters 8-15 : Identifier 'HPacked' is not part of format.hl.HLType
hld/Eval.hx:855: characters 8-18 : Unrecognized pattern: HPacked(t)

Am I missing something? I'm trying to build it myself, so I can maybe use it with Kate through DAP.

ncannasse commented 1 year ago

You need latest "format" library (which is only available on GIT)

Akselmo commented 1 year ago

Alright, thank you!