0
I Use This!
Low Activity

Commits : Listings

Analyzed 1 day ago. based on code collected 1 day ago.
Jul 26, 2024 — Jul 26, 2025
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Merge remote-tracking branch 'origin/feature/extend-support' into feature/extend-support-subweave More... almost 11 years ago
Adding node.cpp to the Makefile. TODO comment additions. More... almost 11 years ago
Implement operator== on Complex_Selector since it can be done in terms of the existing operator<. More... almost 11 years ago
Continuing to implement Node class. More... almost 11 years ago
Adding node test functions that test roundtripping selectors between the old format and the new format. More... almost 11 years ago
Added ability to specify spec directory when running tests. More... almost 11 years ago
First pass of new Node type. More... almost 11 years ago
Updates sass2scss to latest tagged version (0.9.1) More... almost 11 years ago
Renamed print to match ruby sass printing I'm doing. Just committing since I need to change branches. More... almost 11 years ago
First pass of subweave implementation. Needs a lot of clean up. I didn't want to spend a lot of time on that until I got it working in a basic case (which it doesn't now). More... almost 11 years ago
This should all be commenting and clarity fixes. There should be no functional changes with this commit. More... almost 11 years ago
Removing the old extend operator code since I don't think we need it for immediate reference any more. We can always look at master if we want to see it. More... almost 11 years ago
More clean up. Renamed printSelectors to printComplexSelectorDeque to be consistent with the other printing helper methods which are named after the datastructures they print. Continued to remove commented out or unused code. Standardized on putting comments with the ruby code just above the function instead of inside of it so you can easily see the function signature when working in the function. More... almost 11 years ago
Cleaning up printing to the terminal. The order of arguments to print helper methods are now consistent. The default behavior is now the most common (printing with a newline by default). I also took a pass at removing some unneeded debugging prints and commented out code to make the code easier to understand. More... almost 11 years ago
Removing extendRulesetOld, our first pass implementation of the extend operator based on the documentation only. We did not have a full understanding of the algorithm at the time. The newer code is handling a lot more cases correctly, so this code isn't needed anymore. More... almost 11 years ago
Commenting out some prints to make it less verbose. Removing some outdated comments. More... almost 11 years ago
First pass of adding sources to the compound selectors during extend. This makes sass-spec's 182_test_nested_extend_loop test pass. When debugging that test, I'm seeing the correct sources in all but one case. It happens to work anyway by chance. More... almost 11 years ago
First pass of implementing trim. This won't do the right thing yet until sources is set in extendCompoundSelector. The 182_test_nested_extend_loop sass-spec test requires trim to pass. More... almost 11 years ago
Implemented the naive implementation of subweave from https://gist.github.com/nex3/7609394. More... almost 11 years ago
Fixed selector ordering bug. I called push_back when I should have called push_front to keep the original original compound selector at the beginning of the list. More... almost 11 years ago
Realized we were missing an extra level of nesting for the datastructures involved in the extend, so I typedef'd a ComplexSelectorDequeDeque and updated the code to use it. More... almost 11 years ago
Make the unification logic in extendCompoundSelector more like the original libsass implementation since we're trusting that they've implemented unify_with correctly. More... almost 11 years ago
Merge pull request #14 from anyroadcom/hotfix/single-quotes-on-import More... almost 11 years ago
Parsing basic map More... almost 11 years ago
Check for single quotes on import statements More... almost 11 years ago
Interface: Moves omit-url to options struct. More... almost 11 years ago
Fix AppVeyor build failure More... almost 11 years ago
Fix a bunch of unit tests by using the unification logic from the original C++ code. More... almost 11 years ago
Merge branch 'feature/extend-support' of github.com:DealerDotCom/libsass into feature/extend-support More... almost 11 years ago
First pass of implementing the extend operator like ruby sass does. There's a lot of code clean up needed. I want to get the correct results first though to prove out the algorithm. More... almost 11 years ago