Rick Waldron

Results 213 comments of Rick Waldron

@dilijev Instead of relying on WScript APIs for handling, I've opened a feature request for a new flag: [Test262/eshost runtime feature request: -module flag for ch #5274](https://github.com/Microsoft/ChakraCore/issues/5274). That feature appears...

I prefer to not change the default reporter, but instead add a new reporter.

During the course of writing tests for Test262, I've completed a first pass review and filed issues from my findings (all of which have been fixed—thanks @syg!). I will continue...

> `50~px` > `"leo"~utf8` Nice.

> Those symbols are not initial identifier characters. How do you propose to solve the shadowing issue? It's clear that you're unwilling to consider any approach that doesn't use the...

> ``` > const { px } = CSS; > > // later > > const px = figureOutPixelsForBorderWidth(); > setBorderWidth(px); > > // later, but still within the same...

> The issue is that it wouldn't be a syntax error if suffixes required underscores: Follow me... The lexical grammar as it is: > ``` > NumericLiteral `_` IdentifierPart >...

> by requiring the identifier to be _px for the literal-function, we allow the program to still contain other identifiers named px with no collision. That doesn't hold up because...

@littledan > Can we discuss here what other scheme might be better? I suggested above: >> _ExtendedNumericLiteral_ `::` >>     _NumericLiteral_ _IdentifierName_ - Offers the same nice syntax - Can have...

A little late in getting back to this, but @not-an-aardvark appears to have the salient points well covered. @littledan > Do you think local overrides of a variable named n...