We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1768b6e + c22938a commit f74b141Copy full SHA for f74b141
ast.hpp
@@ -1598,7 +1598,7 @@ namespace Sass {
1598
1599
virtual size_t hash()
1600
{
1601
- return 0;
+ return -1;
1602
}
1603
1604
ATTACH_OPERATIONS()
inspect.cpp
@@ -339,8 +339,6 @@ namespace Sass {
339
bool items_output = false;
340
append_string("(");
341
for (auto key : map->keys()) {
342
- if (key->is_invisible()) continue;
343
- if (map->at(key)->is_invisible()) continue;
344
if (items_output) append_comma_separator();
345
key->perform(this);
346
append_colon_separator();
0 commit comments