mirror of
https://github.com/tc39/test262.git
synced 2025-08-31 14:58:30 +02:00
Previously, split() would split on whitespace, then the if-condition would remove `#` - interpreting every word in every comment in the file as a potential valid feature flag. We want splitlines() here. Partial-line comments were inadvertently "supported" before, because of this bug. Instead, support them explicitly by chopping off a `#` character, anything after it, and any whitespace immediately preceding it.
7 lines
144 B
Plaintext
7 lines
144 B
Plaintext
# Here is a full-line comment: not-a-valid-feature
|
|
async-functions # This is a partial-line comment
|
|
object-spread
|
|
generators
|
|
BigInt
|
|
TypedArray
|