Alex

Results 14 issues of Alex

Is it possible to avoid cloning a lot of AST in the CustomFunctions.evaluate. It appears that even for simple functions that don't use most of the arguments a lot of...

On large less files with a lot of @import(s) and mixins the performance is very poor. It appears to be due to the code constantly running function createCurrentDataSnapshot. If I...

In the spirit of allowing the caller to control how threads are created and managed in the application allow to provide the Executor implementation in the Configuration and use that...

Non Language Feature

@supports (background-clip: text) or (-webkit-background-clip: text) or (-moz-background-clip: text) { }

@media screen and (max-width: 605px) { @viewport { width: 100px; } ... Looking at the parser stack: at_rule->block->at_rule->block->ruleSet It takes "width" as a selector inside of the ruleSet. Not as...

bug
help wanted

The code in CSS validation does not send failing CSS node to the error manager. Having the node object can provide more information for richer error reporting (i.e. print parent...

Old Opera selectors: -o-border-radius -o-box-shadow -o-filter Some Mozilla props: -moz-filter -moz-flex-grow user-select

While comparing GraalVM with Node for server side rendering of React. I noticed that Graal version is loosing significant time escaping html in ReactDomServer. The code used to escape the...

performance
regex

Currently Sender.send creates a new channel and closes the channel at the end. When sending multiple messages this can be worked around by implementing a publisher and pushing new send...

type/enhancement

I noticed that Sender and Receiver components unconditionally cache connections and channels . his makes it harder to write code that is resilient when socket connections to Rabbit are closed...