Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tenderlove/recma
Pure ruby javascript parser and interpreter.
https://github.com/tenderlove/recma
Last synced: 13 days ago
JSON representation
Pure ruby javascript parser and interpreter.
- Host: GitHub
- URL: https://github.com/tenderlove/recma
- Owner: tenderlove
- Created: 2008-07-21T16:05:55.000Z (over 16 years ago)
- Default Branch: master
- Last Pushed: 2022-05-22T16:05:15.000Z (over 2 years ago)
- Last Synced: 2024-10-23T01:12:37.876Z (22 days ago)
- Language: Ruby
- Homepage:
- Size: 460 KB
- Stars: 196
- Watchers: 12
- Forks: 58
- Open Issues: 18
-
Metadata Files:
- Readme: README.rdoc
- Changelog: CHANGELOG.rdoc
Awesome Lists containing this project
README
= RECMA
* http://recma.rubyforge.org/
== DESCRIPTION
The RECMA library will parse JavaScript and return a parse tree.
== Example
##
# Iterate over and modify a JavaScript AST. Then print the modified
# AST as JavaScript.
require 'recma'parser = RECMA::Parser.new
ast = parser.parse(
"for(var i = 0; i < 10; i++) { var x = 5 + 5; }"
)ast.each do |node|
node.value = 'hello' if node.value == 'i'
node.name = 'hello' if node.respond_to?(:name) && node.name == 'i'
end
puts ast.to_ecma # => awesome javascript== Acknowledgments
The original javascript parser was taken from rbnarcissus written by
Paul Sowden. Thanks Paul!http://idontsmoke.co.uk/2005/rbnarcissus/
The current parser was ported from WebKit. Thank you WebKit team!
== License
The MIT License
Copyright (c) 2007, 2008, 2009 Aaron Patterson, John Barnette
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE