[squeak-dev] UnicodeHack <- [\x0020-\xE007F]

Levente Uzonyi leves at caesar.elte.hu
Thu Jan 28 12:39:08 UTC 2021


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.
> 
> 
> 
> 
>


More information about the Squeak-dev mailing list