oxyc
oxyc
We ran into the same issue: ``` { "name": "drupal-composer/drupal-project", "description": "Project template for Drupal 8 projects with composer", "type": "project", "license": "GPL-2.0+", "authors": [ { "name": "", "role": ""...
If we drop support of all the obscure environments and runtimes it wouldn't be that be many manually written tests that need that need to be changed if we switched...
Yeah I've given a a few shots at implementations but couldn't really come up with anything that was useful. At the moment I don't have access to the code I...
Ah great, thanks for the quick response. No it was not a fatal error, just the message which will be fixed then. I'll still unhook that action on our sites...
I can close this if you consider the error log messages to be working as intended.
Hiding the error when in "read only" mode sounds great. I think it's a valid use case to not allow the webserver write access to PHP files. Coming from a...
The main issue is commit cefa14ad99b ``` diff - Source = "" + source; + Source = new String(source); ``` v8 bailsout on charCodeAt as it's an object instead of...
I ran a quick proof-of-concept with simply validating the json with the current recursive descent parser, and then using eval. Speed does improve significantly on newer browsers. Unfortunately IE9 turned...
For reference, I was curious to what it would look like if string literals were validated with a regex instead. This increased the speed in chrome (past nativeJSON for this...
I do agree, I'm mostly trying to come up with ideas that could work. Unfortunately I deleted my VMs some time ago and now I do not have access to...