Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Avoid using Sprockets::Utils.module_include in SasscProcessor #798

Closed
wants to merge 1 commit into from
Closed

Avoid using Sprockets::Utils.module_include in SasscProcessor #798

wants to merge 1 commit into from

Conversation

ntkme
Copy link
Contributor

@ntkme ntkme commented Dec 31, 2023

Previously in #759 a mutex lock was added to Sprockets::Utils.module_include to make it thread safe. For sass it was the only option, because Sass::Engine does not allow user to configure where functions are loaded from.

However, for SasscProcessor we don't have to suffer from this lock, because SassC::Engine's API allows user to directly specify a user defined Module for functions:

https://github.com/sass/sassc-ruby/blob/4fce2b635ca5d616a8b1381c64846410bc785ea4/lib/sassc/engine.rb#L19

So instead of including @functions into SassC::Script::Functions, we can do the other way around, which is to include SassC::Script::Functions into @functions and then pass @functions into the engine. This way we have thread safety without the mutex lock.

cc @chadlwilson @rafaelfranca

@ntkme
Copy link
Contributor Author

ntkme commented Jan 31, 2024

Aborting this PR as the same feature has been merged into dartsass-sprockets.

@ntkme ntkme closed this Jan 31, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant