<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Jison: Build parsers in JavaScript</title>
	<atom:link href="http://ajaxian.com/archives/jison-build-parsers-in-javascript/feed" rel="self" type="application/rss+xml" />
	<link>http://ajaxian.com/archives/jison-build-parsers-in-javascript</link>
	<description>Cleaning up the web with Ajax</description>
	<lastBuildDate>Thu, 17 May 2012 07:43:39 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: veged</title>
		<link>http://ajaxian.com/archives/jison-build-parsers-in-javascript/comment-page-1#comment-277795</link>
		<dc:creator>veged</dc:creator>
		<pubDate>Mon, 11 Jan 2010 22:44:11 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=8413#comment-277795</guid>
		<description>for build parsers in JavaScript see also &lt;a href=&quot;http://tinlizzie.org/ometa/&quot; rel=&quot;nofollow&quot;&gt;OMeta&lt;/a&gt; and &lt;a href=&quot;http://tinlizzie.org/ometa-js/&quot; rel=&quot;nofollow&quot;&gt;OMetaJS&lt;/a&gt; (with &lt;a href=&quot;http://github.com/veged/ometa-js/tree/narwhal&quot; rel=&quot;nofollow&quot;&gt;Narwhal module&lt;/a&gt;)</description>
		<content:encoded><![CDATA[<p>for build parsers in JavaScript see also <a href="http://tinlizzie.org/ometa/" rel="nofollow">OMeta</a> and <a href="http://tinlizzie.org/ometa-js/" rel="nofollow">OMetaJS</a> (with <a href="http://github.com/veged/ometa-js/tree/narwhal" rel="nofollow">Narwhal module</a>)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: lgersman</title>
		<link>http://ajaxian.com/archives/jison-build-parsers-in-javascript/comment-page-1#comment-277794</link>
		<dc:creator>lgersman</dc:creator>
		<pubDate>Mon, 11 Jan 2010 21:51:12 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=8413#comment-277794</guid>
		<description>i&#039;ve played a bit with the ANTLR javascript port which needs ~100kb javascript just  for the runtime (!!) and created an a ja parser framework based on jQuery which is much smaller : have a look at 
http://github.com/lgersman/jquery.orangevolt-parse. The project includes AST rebuilding/optimization and a bunch of tests(including a calculator grammar, a js expression resolver and some more)

go to the bottom of the http://github.com/lgersman/jquery.orangevolt-parse/raw/master/tests/parser.html test file to see the calculator grammar.

hmmm, time to make an offical introduction to the project ... :-)</description>
		<content:encoded><![CDATA[<p>i&#8217;ve played a bit with the ANTLR javascript port which needs ~100kb javascript just  for the runtime (!!) and created an a ja parser framework based on jQuery which is much smaller : have a look at<br />
<a href="http://github.com/lgersman/jquery.orangevolt-parse" rel="nofollow">http://github.com/lgersman/jquery.orangevolt-parse</a>. The project includes AST rebuilding/optimization and a bunch of tests(including a calculator grammar, a js expression resolver and some more)</p>
<p>go to the bottom of the <a href="http://github.com/lgersman/jquery.orangevolt-parse/raw/master/tests/parser.html" rel="nofollow">http://github.com/lgersman/jquery.orangevolt-parse/raw/master/tests/parser.html</a> test file to see the calculator grammar.</p>
<p>hmmm, time to make an offical introduction to the project &#8230; :-)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: genericallyloud</title>
		<link>http://ajaxian.com/archives/jison-build-parsers-in-javascript/comment-page-1#comment-277790</link>
		<dc:creator>genericallyloud</dc:creator>
		<pubDate>Mon, 11 Jan 2010 13:31:53 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=8413#comment-277790</guid>
		<description>I also wanted to say that this project looks pretty cool too. I wasn&#039;t trying to knock it! I&#039;m just doing a project with Antlr now and thought I would mention it.</description>
		<content:encoded><![CDATA[<p>I also wanted to say that this project looks pretty cool too. I wasn&#8217;t trying to knock it! I&#8217;m just doing a project with Antlr now and thought I would mention it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: genericallyloud</title>
		<link>http://ajaxian.com/archives/jison-build-parsers-in-javascript/comment-page-1#comment-277789</link>
		<dc:creator>genericallyloud</dc:creator>
		<pubDate>Mon, 11 Jan 2010 13:27:34 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=8413#comment-277789</guid>
		<description>For thosewho prefer top down parsing, I believe there&#039;s a prettygood JavaScript back-end for Antlr. I haven&#039;t tried it yet, but Antlr itself is great!</description>
		<content:encoded><![CDATA[<p>For thosewho prefer top down parsing, I believe there&#8217;s a prettygood JavaScript back-end for Antlr. I haven&#8217;t tried it yet, but Antlr itself is great!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Skilldrick</title>
		<link>http://ajaxian.com/archives/jison-build-parsers-in-javascript/comment-page-1#comment-277787</link>
		<dc:creator>Skilldrick</dc:creator>
		<pubDate>Mon, 11 Jan 2010 13:17:15 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=8413#comment-277787</guid>
		<description>Wow. This is going to open up a lot of exciting possibilities!</description>
		<content:encoded><![CDATA[<p>Wow. This is going to open up a lot of exciting possibilities!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

