Rkelly 1.0.1 Released

I have no idea how this happened, but I’m sure that someone pulling out
a
Beretta was involved. Anyway, here it is:

rkelly version 1.0.1 has been released!

The RKelly library will parse JavaScript and return a parse tree.

Changes:

1.0.1

  • Bugfixes

    • Fixed nondeterministic file order loading issue.

Example

Iterate over and modify a JavaScript AST. Then print the modified

AST as JavaScript.

require ‘rkelly’

parser = RKelly::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

On 8 Jun 2009, at 23:10, Aaron P. wrote:

I have no idea how this happened, but I’m sure that someone pulling
out a
Beretta was involved. Anyway, here it is:

rkelly version 1.0.1 has been released!

The RKelly library will parse JavaScript and return a parse tree.

You are a sick puppy - and I love you for it :slight_smile:

Ellie

Eleanor McHugh
Games With Brains
http://slides.games-with-brains.net

raise ArgumentError unless @reality.responds_to? :reason

On Wed, Jun 10, 2009 at 12:18:04AM +0900, Eleanor McHugh wrote:

You are a sick puppy - and I love you for it :slight_smile:

This is what happens when you sit next to Ryan all day. :wink:

On Jun 9, 2009, at 08:44 , Aaron P. wrote:

The RKelly library will parse JavaScript and return a parse tree.

You are a sick puppy - and I love you for it :slight_smile:

This is what happens when you sit next to Ryan all day. :wink:

Pthththth

I don’t own a single pain of zubaz pants. I’m not even remotely the
cause of your sickness.

On Mon, Jun 8, 2009 at 4:10 PM, Aaron P.
[email protected]wrote:

I have no idea how this happened, but I’m sure that someone pulling out a
Beretta was involved. Anyway, here it is:

rkelly version 1.0.1 has been released!

The RKelly library will parse JavaScript and return a parse tree.

Hey, this is an awesome library, but there’s one thing I should point
out
about your description on Rubyforge:

This library will parse Javascript and turn it into Ruby. The ruby
generated

should be functionally equivalent to the Javascript.

At the time I was looking for a JavaScript-to-JavaScript compiler to do
some
code futzing. When I found RKelly, I was like “hey great, a Racc
grammar
for JavaScript!” However I was too lazy to check the README and started
trying to pull the grammar/parser into my project first before
discovering
that it was a fully fledged JavaScript-to-JavaScript compiler.

You might want to note that it also outputs JavaScript on the Rubyforge
description.

On Jun 9, 2009, at 10:27, Tony A. wrote:

At the time I was looking for a JavaScript-to-JavaScript compiler to
Rubyforge
description.

I think you missed the first line:

I have no idea how this happened, but I’m sure that someone pulling
out a
Beretta was involved.

Judging from this sentence, I bet Aaron wouldn’t mind someone taking
over rkelly.

On Tue, Jun 9, 2009 at 12:54 PM, Eric H. [email protected]
wrote:

I think you missed the first line:

I have no idea how this happened, but I’m sure that someone pulling out a

Beretta was involved.

Judging from this sentence, I bet Aaron wouldn’t mind someone taking over
rkelly.

Heh, guess you’re not an R Kelly fan…

I pull out my Beretta
He walks up to the closet
He comes up to the closet
Now he’s at the closet
Now he’s opening the closet

On 9 Jun 2009, at 18:19, Ryan D. wrote:

I don’t own a single pain of zubaz pants. I’m not even remotely
the cause of your sickness.

Hmmm… sitting next to the author of Wilson and RubyInline… all day
long? That’s gotta have some kind of osmotic influence…

Ellie

Eleanor McHugh
Games With Brains
http://slides.games-with-brains.net

raise ArgumentError unless @reality.responds_to? :reason

On 10 Jun 2009, at 00:06, Tony A. wrote:

Judging from this sentence, I bet Aaron wouldn’t mind someone
Now he’s opening the closet
And now that South Park episode finally makes sense…

Ellie

Eleanor McHugh
Games With Brains
http://slides.games-with-brains.net

raise ArgumentError unless @reality.responds_to? :reason

On Tue, Jun 9, 2009 at 5:26 PM, Ryan D. [email protected]
wrote:

We sit next to and code with aaron every day… Fan or not, we bet Aaron
would’nt mind someone taking over the project.

Well, through a roundabout manner I have come upon yet another of
tenderlove’s projects, Johnson, which seems intended as an RKelly
replacement and is better suited for our needs anyway.

I forsee transitioning what I wrote with RKelly to Johnson shortly and
begin
writing tests which actually execute the JavaScripts we’re compiling.

On Jun 9, 2009, at 16:06 , Tony A. wrote:

Judging from this sentence, I bet Aaron wouldn’t mind someone
taking over
rkelly.

Heh, guess you’re not an R Kelly fan…

We sit next to and code with aaron every day… Fan or not, we bet
Aaron would’nt mind someone taking over the project.