prometheus-lua / Prometheus

Lua Obfuscator written in pure Lua

Home Page:https://levno-710.gitbook.io/prometheus/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Typehints not Supported

Multitude1337 opened this issue · 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

Lexer fault.

Prometheus doesn't support type hints yet