iv / phonic
github.com/Constellation/iv/tree/master/src/phonic/
DESCRIPTION
phonic is ruby binding for iv AST API
MILESTONE
-
parser - done
-
specialized AST - working
TARGET
Aims at flexible Ast Access API binding of ECMAScript 5th
INSTALL
gem install iv-phonic
USAGE
require 'iv/phonic'
require 'pp'
pp IV::Phonic::parse(<<-EOS)
var i = "OK";
function test() {
alert("OK");
}
EOS