Skip to content

Instantly share code, notes, and snippets.

@brendandahl
Last active August 29, 2015 14:21
Show Gist options
  • Save brendandahl/b0439a7178991b3790a4 to your computer and use it in GitHub Desktop.
Save brendandahl/b0439a7178991b3790a4 to your computer and use it in GitHub Desktop.
Dump J2ME.js Context Frames
var frames = $.ctx.frames;
var out = "";
for (var i = 0; i < frames.length; i++) {
if (frames[i].methodInfo) {
out += frames[i].methodInfo.implKey + "\n";
} else {
out += "marker\n";
}
}
out;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment