Skip to content

Instantly share code, notes, and snippets.

@jbclements
Created April 11, 2012 16:57
Show Gist options
  • Save jbclements/2360523 to your computer and use it in GitHub Desktop.
Save jbclements/2360523 to your computer and use it in GitHub Desktop.
Montana
var SAMPLE_FILE = 'sample2.js';
var jsCode = read(SAMPLE_FILE);
var jsAST = Reflect.parse(jsCode);
JSON.parse(JSON.stringify(jsAST), function(key, value) {
if (key == "name") {
print (value);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment