UnicodeHack <- [\x0020-\xE007F]

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

UnicodeHack <- [\x0020-\xE007F]

Squeak - Dev mailing list
Hi Folks,

Is it true that the character range in that PEG rule maps to

Character codePoint:16rE0020 through Character codePoint:16rE007F   thanks in advance.





Reply | Threaded
Open this post in threaded view
|

Re: UnicodeHack <- [\x0020-\xE007F]

Levente Uzonyi
Hi Tim,

If you mean that \x0020-\xE007F in the Xtreams PEG parser's language is
equal to the Smalltalk character range

  16rE0020 asCharacter to: 16rE007F asCharacter

then the answer is no, because there is an extra E in the Smalltalk code's
range start. \x0020-\xE007F is the same range as

  16r0020 asCharacter to: 16rE007F asCharacter.


Levente

On Thu, 28 Jan 2021, gettimothy via Squeak-dev wrote:

> Hi Folks,
>
> Is it true that the character range in that PEG rule maps to
>
> Character codePoint:16rE0020 through Character codePoint:16rE007F   thanks in advance.
>
>
>
>
>