Alexandre Folle de Menezes

Results 75 comments of Alexandre Folle de Menezes

The comments above may imply that I am working on fixes for all the remaining issues, but I don't know enough to do it. I'll leave this to someone more...

@Perelandric seems to be making a lot of progress on old browser support. Would you mind taking a look at these issues?

It seems strange to me that this specific test is marked as passing for Safari >= 10.1, but failing for Safari TP and Webkit. Is this correct? I don't have...

I have added all the other features enabled by chrome.harmony on Chrome 61 to pull #1168. What is missing: - Notes for the `chrome.harmony` flag on versions < 61; -...

According to @gsathya, only the `--harmony` flag enables complete and stable features (see #1170). The other flags enable features that are incomplete or unstable. My plan now is to remove...

We are talking about different kinds of unstable. An unstable feature means it is not complete yet and may change. An unstable implementation means it does not follow the specification...

> > An unstable feature means it is not complete yet and may change. > > All esnext features are unstable in that meaning. > Yep. > An unstable implementation...

My patches only implement this for some of the flags, and only for Chrome >= 61. My intention with this bug was to have all of them fixed.

I believe the strigs above are escaped by the `escapeTestName()` function in build.js: ``` function escapeTestName(name) { return name.replace(/^[\s&"',]+|[\s&"',]+$/g, '').replace(/[\s&"]+/g, '_'); } ``` I tried adding further filtering for '%',...