prometheus-lua / Prometheus

Lua Obfuscator written in pure Lua
https://levno-710.gitbook.io/prometheus/
GNU Affero General Public License v3.0
220 stars 65 forks source link

Typehints not Supported #156

Open Multitude1337 opened 10 months ago

Multitude1337 commented 10 months ago

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
Zaenalos commented 10 months ago

Lexer fault.

levno-710 commented 10 months ago

Prometheus doesn't support type hints yet