<?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: Implementing a scripting language with Antlr (Part 1: Lexer)</title>
	<atom:link href="http://tech.puredanger.com/index.php/2007/01/13/implementing-a-scripting-language-with-antlr-part-1-lexer/feed/" rel="self" type="application/rss+xml" />
	<link>http://tech.puredanger.com/2007/01/13/implementing-a-scripting-language-with-antlr-part-1-lexer/</link>
	<description>Alex Miller&#039;s technical blog</description>
	<lastBuildDate>Mon, 06 Feb 2012 19:39:50 -0800</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.4</generator>
	<item>
		<title>By: Alex Miller</title>
		<link>http://tech.puredanger.com/2007/01/13/implementing-a-scripting-language-with-antlr-part-1-lexer/comment-page-1/#comment-201262</link>
		<dc:creator>Alex Miller</dc:creator>
		<pubDate>Fri, 23 Apr 2010 02:14:26 +0000</pubDate>
		<guid isPermaLink="false">http://tech.puredanger.com/2007/01/13/implementing-a-scripting-language-with-antlr-part-1-lexer/#comment-201262</guid>
		<description>@Julie: Honestly I&#039;m not sure exactly what you&#039;re asking.  If you want to load your tokens from a text file, I&#039;m not sure that will work since the tokens get compiled into the grammar.  Really, I haven&#039;t worked in this area for years so I would recommend checking out Terrence Parr&#039;s antlr book for the best info.</description>
		<content:encoded><![CDATA[<p>@Julie: Honestly I&#8217;m not sure exactly what you&#8217;re asking.  If you want to load your tokens from a text file, I&#8217;m not sure that will work since the tokens get compiled into the grammar.  Really, I haven&#8217;t worked in this area for years so I would recommend checking out Terrence Parr&#8217;s antlr book for the best info.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Julie</title>
		<link>http://tech.puredanger.com/2007/01/13/implementing-a-scripting-language-with-antlr-part-1-lexer/comment-page-1/#comment-201142</link>
		<dc:creator>Julie</dc:creator>
		<pubDate>Thu, 22 Apr 2010 15:56:01 +0000</pubDate>
		<guid isPermaLink="false">http://tech.puredanger.com/2007/01/13/implementing-a-scripting-language-with-antlr-part-1-lexer/#comment-201142</guid>
		<description>how about getting the input from a text file to make it our tokens?? such as some words we wrote in a text file, and make the lexer understand each word is a part of TOKENs.
can we put it all in a string, like this &quot; &#039;student&#039; &#124; &#039;pupil&#039; &#124; &#039;teacher&#039; &quot; (not include quote), into NOUN to make it understand in stead of define each word to the grammar file?</description>
		<content:encoded><![CDATA[<p>how about getting the input from a text file to make it our tokens?? such as some words we wrote in a text file, and make the lexer understand each word is a part of TOKENs.<br />
can we put it all in a string, like this &#8221; &#8216;student&#8217; | &#8216;pupil&#8217; | &#8216;teacher&#8217; &#8221; (not include quote), into NOUN to make it understand in stead of define each word to the grammar file?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Swathy</title>
		<link>http://tech.puredanger.com/2007/01/13/implementing-a-scripting-language-with-antlr-part-1-lexer/comment-page-1/#comment-146102</link>
		<dc:creator>Swathy</dc:creator>
		<pubDate>Wed, 25 Feb 2009 11:52:12 +0000</pubDate>
		<guid isPermaLink="false">http://tech.puredanger.com/2007/01/13/implementing-a-scripting-language-with-antlr-part-1-lexer/#comment-146102</guid>
		<description>Hi Alex

I understand that you&#039;re using antlr with eclipse. Could you please tell me the procedure about how to use antlr with eclipse. I tried a lot but failed.

Thanks
Swathy</description>
		<content:encoded><![CDATA[<p>Hi Alex</p>
<p>I understand that you&#8217;re using antlr with eclipse. Could you please tell me the procedure about how to use antlr with eclipse. I tried a lot but failed.</p>
<p>Thanks<br />
Swathy</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: info</title>
		<link>http://tech.puredanger.com/2007/01/13/implementing-a-scripting-language-with-antlr-part-1-lexer/comment-page-1/#comment-2715</link>
		<dc:creator>info</dc:creator>
		<pubDate>Thu, 19 Apr 2007 03:20:53 +0000</pubDate>
		<guid isPermaLink="false">http://tech.puredanger.com/2007/01/13/implementing-a-scripting-language-with-antlr-part-1-lexer/#comment-2715</guid>
		<description>This is a great introduction to ANTLR. I am embarking on a long journey into a jungle of abstract trees and you are helping me feel the journey will be a success. Thank you.</description>
		<content:encoded><![CDATA[<p>This is a great introduction to ANTLR. I am embarking on a long journey into a jungle of abstract trees and you are helping me feel the journey will be a success. Thank you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex</title>
		<link>http://tech.puredanger.com/2007/01/13/implementing-a-scripting-language-with-antlr-part-1-lexer/comment-page-1/#comment-569</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Tue, 30 Jan 2007 14:54:51 +0000</pubDate>
		<guid isPermaLink="false">http://tech.puredanger.com/2007/01/13/implementing-a-scripting-language-with-antlr-part-1-lexer/#comment-569</guid>
		<description>Absolutely right!  Thanks for the catch.  All the backslashes fell out in some escaping or encoding along the way.  Should be fixed now.</description>
		<content:encoded><![CDATA[<p>Absolutely right!  Thanks for the catch.  All the backslashes fell out in some escaping or encoding along the way.  Should be fixed now.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

