Prometheus icon indicating copy to clipboard operation
Prometheus copied to clipboard

Typehints not Supported

Open Multitude1337 opened this issue 2 years ago • 2 comments

So, this is gonna sound like an odd one, but... this is for Roblox LUA code by the way.

So, in normal circumstances, this code would execute just fine without obfuscation. The issue is putting ": string" after a function, like in my example. This issue isn't too big a deal, but since I encountered it, I felt I should report this bug.

To Reproduce my error, you will want to try and obfuscate the ModuleScript code and you'll get: Parsing Error at Position 3:30, unexpected token <Symbol> ":", expected <Keyword> "end"<-[0m

LocalScript:

local MyModule = require(script:WaitForChild'ModuleScript')

MyModule.myFunction()

ModuleScript:

local MyModule = {}

function MyModule.myFunction(): string
	print("Hello from myFunction!")
end

return MyModule

Multitude1337 avatar Nov 19 '23 04:11 Multitude1337

Lexer fault.

Zaenalos avatar Nov 27 '23 11:11 Zaenalos

Prometheus doesn't support type hints yet

levno-710 avatar Nov 28 '23 00:11 levno-710