<div dir="ltr"><div>@Jay</div><div class="gmail_extra"><br></div><div class="gmail_extra"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">
I&#39;m not sure what you mean by &quot;<span style="font-size:13px;font-family:arial,sans-serif">Doing a regex-match loses the original typing information&quot;</span></blockquote><div><br></div><div>I just meant that since I want a:&quot;2&quot; to parse as &#39;(a . &quot;2&quot;) and a:2 to parse as &#39;(a . 2), I&#39;m having to perform a bunch of checks on the regex match string to see if I can convert it to back to a number, etc.  Something like your (string-&gt;identifier-symbol-string-or-number).  I was thinking maybe that was misguided and the syntax object contained information to help me in this regard.  Obviously if I go with the reader approach I&#39;ll have to do it this way, but at #%top I thought maybe there was some type hints available.</div>
<div><br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex"><span style="font-family:arial,sans-serif;font-size:13px">The complicated way would have to deal with stuff like (f 1):5</span></blockquote>
<div><br></div><div>Ya, I never really thought of all the implications.  At first It seemed like the Reader approach was the <i>less</i> complicated way, but now I realize that the following should work:</div><div>((ë (x) (add1 x)) 1):5 =&gt; (cons ((ë (x) (add1 x)) 1) 5)  =&gt; &#39;(2 . 5)</div>
<div><br></div><div>and so I must recursively parse backwards to see where the sexp terminates.  Maybe this what Eli was getting at with letting the reader do the job first and then looking though the syntax tree after.</div>
<div><br></div><div>Scott.</div><br><div class="gmail_quote">On Mon, Sep 9, 2013 at 5:49 AM, Jay McCarthy <span dir="ltr">&lt;<a href="mailto:jay.mccarthy@gmail.com" target="_blank">jay.mccarthy@gmail.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex"><div dir="ltr">You can do this a complicated way and an easy way. The complicated way would have to deal with stuff like (f 1):5 and the easy way would just work on stuff like x:1. I see &quot;string&quot;:e as being part of the complicated way. In my mind, the complicated way would have to be done with a reader that produced some syntax that the expander dealt with the rest of. The easy way would just be a #%top macro like you have.<div>

<br></div><div>I&#39;m not sure what you mean by &quot;<span style="font-family:arial,sans-serif;font-size:13px">Doing a regex-match loses the original typing information&quot; given that there is no &quot;typing&quot; information in the original syntax. My guess is that you need to be more particular about the arguments to datum-&gt;syntax after you do the regexp spilt...</span></div>

<div><span style="font-family:arial,sans-serif;font-size:13px"><br></span></div><div><font face="arial, sans-serif">(map (lambda (ns) (datum-&gt;syntax #&#39;sym (string-&gt;identifier-symbol-string-or-number ns))) (regexp-split #rx&quot;:&quot; (symbol-&gt;string (syntax-&gt;datum #&#39;sym)))</font></div>

<div><font face="arial, sans-serif"><br></font></div><div><font face="arial, sans-serif">Jay</font></div><div><span style="font-family:arial,sans-serif;font-size:13px"><br></span></div></div><div class="gmail_extra"><br>
<br>
<div class="gmail_quote"><div><div class="h5">On Sun, Sep 8, 2013 at 1:29 PM, Scott Klarenbach <span dir="ltr">&lt;<a href="mailto:scott@pointyhat.ca" target="_blank">scott@pointyhat.ca</a>&gt;</span> wrote:<br></div></div>
<blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex"><div><div class="h5">
<div dir="ltr">So in an attempt to improve my understanding of Racket Macros, I thought I&#39;d implement the following syntax change to Racket:  Introduce an alternative syntax for pairs where they are delimited by &#39;:&#39; in addition to &#39; . &#39;, ie:<div>


<br></div><div>&quot;a&quot;:&quot;b&quot; =&gt; &#39;(&quot;a&quot; . &quot;b&quot;)</div><div><br></div><div>Seemed simple enough.  I hooked into #%top, split any identifiers on &quot;:&quot; and reconstructed the syntax.  I also always quote the left match which catches unbound identifiers ala javascript style object keys.</div>


<div><br></div><div>But, now I want</div><div><br></div><div>1:2 =&gt; &#39;(1 . 2)</div><div>&quot;1&quot;:2 =&gt; &#39;(&quot;1&quot; . 2)</div><div><br></div><div>Doing a regex-match loses the original typing information unless I (manually?) store it before symbol-&gt;string conversion.  What&#39;s worse, I also want:<br>


</div><div><br></div><div>(define x 3)</div><div>k:x =&gt; &#39;(k . 3)</div><div><br></div><div>But my naive approach loses the binding information along with the typing.</div><div><br></div><div>My questions are:</div>

<div>
<br></div><div>1.)  Is my strategy wrong?  Should I just tell the Reader to convert any x:y into (cons x y) and let the expander figure out the rest?  Are there general guidelines to follow in this regard?  (Syntax =&gt; Reader, Semantics =&gt; Expander)??</div>


<div><br></div><div>2.)  If I stick with macros, what tactics should I be using to avoid the problems I have above?</div><div><br></div><div>I&#39;m sure that binding/typing information is a basic concern well addressed by Racket.  I&#39;ve dug through the <a href="http://docs.racket-lang.org/reference/stxcmp.html#%28def._%28%28quote._~23~25kernel%29._bound-identifier~3d~3f%29%29" style="font-size:medium;text-decoration:none;color:blue;font-family:monospace;white-space:nowrap;background-color:rgb(232,232,255)" target="_blank">bound-identifier=?</a> stuff a bit, but my understanding is clearly lacking and before I go about reconstructing lexical information ad-hoc I thought I&#39;d post this as a sanity check to point me in the right direction.</div>


<div><br></div><div>Thanks for your help.</div><div><div><div><div><br></div>-- <br>Talk to you soon,<br><br>Scott Klarenbach<br><br>PointyHat Software Corp.<br><a href="http://www.pointyhat.ca" target="_blank">www.pointyhat.ca</a><br>


p <a href="tel:604-568-4280" value="+16045684280" target="_blank">604-568-4280</a><br>e <a href="mailto:scott@pointyhat.ca" target="_blank">scott@pointyhat.ca</a><br><span style="color:rgb(34,34,34);font-size:13px;font-family:arial,sans-serif">200-1575 W. Georgia</span><br>

Vancouver, BC <span style="color:rgb(34,34,34);font-size:13px;font-family:arial,sans-serif">V6G2V3</span><br><br>_______________________________________<br>To iterate is human; to recur, divine
</div></div></div></div>
<br></div></div>____________________<br>
  Racket Users list:<br>
  <a href="http://lists.racket-lang.org/users" target="_blank">http://lists.racket-lang.org/users</a><br>
<br></blockquote></div><span class=""><font color="#888888"><br><br clear="all"><div><br></div>-- <br>Jay McCarthy &lt;<a href="mailto:jay@cs.byu.edu" target="_blank">jay@cs.byu.edu</a>&gt;<br>Assistant Professor / Brigham Young University<br>
<a href="http://faculty.cs.byu.edu/~jay" target="_blank">http://faculty.cs.byu.edu/~jay</a><br>
<br>&quot;The glory of God is Intelligence&quot; - D&amp;C 93
</font></span></div>
</blockquote></div><br><br clear="all"><div><br></div>-- <br>Talk to you soon,<br><br>Scott Klarenbach<br><br>PointyHat Software Corp.<br><a href="http://www.pointyhat.ca" target="_blank">www.pointyhat.ca</a><br>p 604-568-4280<br>
e <a href="mailto:scott@pointyhat.ca" target="_blank">scott@pointyhat.ca</a><br><span style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:13px;background-color:rgb(255,255,255)">200-1575 W. Georgia</span><br>
Vancouver, BC <span style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:13px;background-color:rgb(255,255,255)">V6G2V3</span><br><br>_______________________________________<br>To iterate is human; to recur, divine
</div></div>