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

Fix for null selectors and respecting specificity. #4

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
97e69ca
Added various various sass selector functions
mgonzalez999 Jun 2, 2015
ef933a1
Switched to existing Complex_Selector_Compare functor, instead of usi…
mgonzalez999 Jun 5, 2015
c3b029b
Improve and fix a few minor code issues
mgreter Jun 6, 2015
64f72f3
Performance improvements
mgreter Jun 7, 2015
dd2cc25
Rename some stuff in the parser
mgreter Jun 7, 2015
7c6a26c
Performance improvements
mgreter Jun 7, 2015
457fd6f
Preparation for parser refactoring
mgreter Jun 7, 2015
7a30de0
Parser refactoring
mgreter Jun 7, 2015
91bdfa5
Performance improvements
mgreter Jun 8, 2015
c9471e1
Next parser refactoring iteration [WIP]
mgreter Jun 8, 2015
2f42c86
Fix custom at rules value handling
mgreter Jun 12, 2015
e1b7713
Improve function call return value handling
mgreter Jun 12, 2015
2189e4a
Fix segfault caused by static cast and wrong type
mgreter Jun 12, 2015
ed5411f
Fix MSVC compilation and some remaining warnings
mgreter Jun 12, 2015
7a9f9ed
Clean up some code left overs
mgreter Jun 12, 2015
c443954
Fix parsing edge case with numbers and trailing escapes
mgreter Jun 13, 2015
226144f
Improve url parsing to allow interpolants
mgreter Jun 14, 2015
28855bd
Improve At_Rule parsing
mgreter Jun 14, 2015
8bed09f
Fix unquote handling for non string types
mgreter Jun 15, 2015
683dbd2
Fix string output normalization for linefeeds
mgreter Jun 15, 2015
439b6f6
Cleaning up some minor code parts
mgreter Jun 15, 2015
907800e
Implement static media_queries for imports
mgreter Apr 5, 2015
906e399
Implement static selector namespace handling
mgreter Apr 7, 2015
cd87ee3
Implement initial parts for reference combinators
mgreter Jun 15, 2015
bcffad2
Fix type-of function reporting color for strings
mgreter Jun 18, 2015
93cf5a1
Fix hashed index calculation for lists
mgreter Jun 23, 2015
ec7d378
Improve deprecation handling in unquote function
mgreter Jun 23, 2015
36f9c2a
Handle quoted string in case conversion functions
mgreter Jun 23, 2015
f1938e5
Add default CRTP visitor for String_Quoted
mgreter Jun 23, 2015
60d2694
Next WIP parser refactoring iteration
mgreter Jun 23, 2015
789c41b
Fix for null selectors and respecting specificity.
Jun 30, 2015
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,6 @@ SOURCES = \
bind.cpp \
constants.cpp \
context.cpp \
contextualize.cpp \
contextualize_eval.cpp \
cssize.cpp \
listize.cpp \
error_handling.cpp \
Expand Down
2 changes: 0 additions & 2 deletions Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,6 @@ libsass_la_SOURCES = \
bind.cpp bind.hpp \
constants.cpp constants.hpp \
context.cpp context.hpp \
contextualize.cpp contextualize.hpp \
contextualize_eval.cpp contextualize_eval.hpp \
error_handling.cpp error_handling.hpp \
eval.cpp eval.hpp \
expand.cpp expand.hpp \
Expand Down
Loading