Skip to content

Replace "lock" preg_replace with state machine enhancements #114

Open
@tedivm

Description

@tedivm

The "lock" functionality explicitly locks certain patterns in place, such as "asd" + ++x;. If the plus signs in that example were to merge into one string ("asd"+++x;) it would cause an error with the javascript.

When this bug was discovered we took the easy way out and replaced the pattern with a special string. This was done with a preg_replace across the whole string. The performance on this is pretty garbage.

To resolve this properly the "+ ++" pattern would be detected inside of the state machine that generates the minified string. Placing it in there would prevent the additional preg_replace scan, and would allow us to skip the "add back" portion of the code. This would provide a significant performance boost.

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions