Enyby

Results 20 comments of Enyby

I do not know why lua 5.2 not compatible with lua 5.3 in bytecode. It is possible, but lua do not make it. 5.3 need a lot of work.

@vladp Of course not. This is not a fork, at all. And not Lua anymore.

LuaJ not support or implement Lua C layer. So you can not use Lua C libraries. If you need run C code you can load and run libs via Java...

You must carefully monitor all opened files. Especially for those that are created implicitly. For example, `io.lines(file)` will open the file for reading. Until you read the entire file and...

J2ME: No finalization. CLDC does not include the Object.finalize() method. So you **must** track and close all files explicit. Or you get resource leak.

There are some side-effects of garbage collection implementation in LuaJ. **1. The values ​​of local variables, after exiting the block, can remain on the stack, preventing garbage collection.** For example,...

Read here: https://stackoverflow.com/questions/1921238/getclass-getclassloader-is-null-why We can use `ClassLoader.getSystemClassLoader()` if previous call return null, but this not guaranteed you get not null value here. All depends on how you load classes. Usually...

In FF 10.0.2 or later no button "Add overlay" present. But I found quick fix - in file PixelPerfectPanel.js add line: addMenuOption('Add Overlay', Firebug.PixelPerfectModule.addOverlay, false); after: addMenuOption('Hide Statusbar Icon', buildToggleBoolPrefFn(hideStatusBarPref),...

Same problem. FF 10.0.2 && FB 1.10.0a5. After restart FF all work.