From 6494bd46822a72cb1c8c3a2933495a9ebb2a2298 Mon Sep 17 00:00:00 2001 From: Natalie Weizenbaum Date: Wed, 10 Apr 2019 18:45:57 -0700 Subject: [PATCH 1/4] Drop runner support for the notion of language versions --- lib/sass_spec/cli.rb | 8 -------- lib/sass_spec/engine_adapter.rb | 30 ++++++++++------------------- lib/sass_spec/runner.rb | 25 +----------------------- lib/sass_spec/test_case_metadata.rb | 25 ------------------------ 4 files changed, 11 insertions(+), 77 deletions(-) diff --git a/lib/sass_spec/cli.rb b/lib/sass_spec/cli.rb index 300025fa5e..ab8758fc9c 100644 --- a/lib/sass_spec/cli.rb +++ b/lib/sass_spec/cli.rb @@ -42,14 +42,6 @@ def self.parse options[:verbose] = true end - opts.on("-V", "--version LANGUAGE_VERSION", "Select the Sass Language Version to test.") do |v| - unless SassSpec::LANGUAGE_VERSIONS.include?(v) - raise ArgumentError.new("Version #{v} is not valid. " + - "Did you mean one of: #{SassSpec::LANGUAGE_VERSIONS.join(', ')}") - end - options[:language_version] = v - end - opts.on("-t", "--tap", "Output TAP compatible report") do options[:tap] = true end diff --git a/lib/sass_spec/engine_adapter.rb b/lib/sass_spec/engine_adapter.rb index 82e247cbcb..1a4b7daea0 100644 --- a/lib/sass_spec/engine_adapter.rb +++ b/lib/sass_spec/engine_adapter.rb @@ -7,15 +7,6 @@ def describe not_implemented end - # The version string of the implementation - def version - not_implemented - end - - def to_s - describe - end - # Compile a Sass file and return the results # @return [css_output, std_error, status_code] def compile(sass_filename, precision) @@ -36,6 +27,7 @@ def initialize(command, description = nil) @command = command @timeout = 90 @description = description || command + @version = `#{@command} -v` end def set_description(description) @@ -46,13 +38,6 @@ def describe @description end - def version - require 'open3' - stdout, stderr, status = Open3.capture3("#{@command} -v", :binmode => true) - stdout.to_s - end - - def compile(sass_filename, precision) command = File.absolute_path(@command) dirname, basename = File.split(sass_filename) @@ -66,6 +51,10 @@ def compile(sass_filename, precision) [result[:stdout], result[:stderr], result[:status].exitstatus] end end + + def to_s + "#{@description} #{@version}" + end end class DartEngineAdapter < EngineAdapter @@ -108,16 +97,13 @@ def initialize(path) @stdout.set_encoding 'binary' @stderr.set_encoding 'binary' end + @version = `dart #{@path}/bin/sass.dart --version` end def describe "dart-sass" end - def version - `dart #{@path}/bin/sass.dart --version` - end - def compile(sass_filename, precision) dirname, basename = File.split(sass_filename) @stdin.puts "!cd #{File.absolute_path(dirname)}" @@ -125,6 +111,10 @@ def compile(sass_filename, precision) [next_chunk(@stdout), next_chunk(@stderr), next_chunk(@stdout).to_i] end + def to_s + "Dart Sass #{@version}" + end + private def next_chunk(io) diff --git a/lib/sass_spec/runner.rb b/lib/sass_spec/runner.rb index 14b0da59a7..b88489c617 100644 --- a/lib/sass_spec/runner.rb +++ b/lib/sass_spec/runner.rb @@ -8,7 +8,6 @@ class SassSpec::Runner def initialize(options = {}) @options = options - @options[:language_version] = language_version.to_s end def get_input_dirs @@ -37,8 +36,7 @@ def get_input_files def run unless @options[:silent] || @options[:tap] - puts "Recursively searching under #{get_input_dirs.join(", ")} for test files to test '#{@options[:engine_adapter]}' against language version #{@options[:language_version]}." - puts @options[:engine_adapter].version + puts "Recursively searching under #{get_input_dirs.join(", ")} for test files to test #{@options[:engine_adapter]}." end test_cases = _get_cases @@ -74,21 +72,6 @@ def run result end - def language_version - unless defined?(@language_version) - @language_version = if @options[:language_version] - Gem::Version.new(@options[:language_version]) - elsif @options[:engine_adapter].respond_to?(:language_version) - Gem::Version.new(@options[:engine_adapter].language_version) - else - warn "No language version specified. " + - "Using #{SassSpec::MAX_LANGUAGE_VERSION}" - SassSpec::MAX_LANGUAGE_VERSION - end - end - @language_version - end - def impl @options[:engine_adapter].describe end @@ -98,12 +81,6 @@ def _get_cases get_input_files().each do |filename| dir = SassSpec::Directory.new(File.dirname(filename)) metadata = SassSpec::TestCaseMetadata.new(dir) - unless metadata.valid_for_version?(language_version) - if @options[:verbose] - warn "#{metadata.name} does not apply to Sass #{language_version}" - end - next - end unless metadata.valid_for_impl?(impl) if @options[:verbose] diff --git a/lib/sass_spec/test_case_metadata.rb b/lib/sass_spec/test_case_metadata.rb index 09f7d46fa2..ce3afad51f 100644 --- a/lib/sass_spec/test_case_metadata.rb +++ b/lib/sass_spec/test_case_metadata.rb @@ -106,33 +106,8 @@ def precision @options[:precision] end - def start_version - @start_version ||= Gem::Version.new(@options[:start_version] || SassSpec::MIN_LANGUAGE_VERSION) - end - - def end_version - unless defined?(@end_version) - @end_version = if @options[:end_version] - Gem::Version.new(@options[:end_version]) - else - nil - end - end - @end_version - end - - def valid_for_version?(version) - version = Gem::Version.new(version) if version.is_a?(String) - valid = start_version <= version - if end_version - valid &&= version <= end_version - end - valid - end - def valid_for_impl?(impl) !ignore_for?(impl) end - end end From 60b86ec674d60306efc9e3a2e9395f34a3b02434 Mon Sep 17 00:00:00 2001 From: Natalie Weizenbaum Date: Wed, 10 Apr 2019 18:50:42 -0700 Subject: [PATCH 2/4] Delete :start_version: and :end_version: annotations This also deletes all directories with an :end_version:. --- spec/basic/16_hex_arithmetic.hrx | 152 --- .../23_basic_value_interpolation-4.0.hrx | 1 - spec/basic/23_basic_value_interpolation.hrx | 37 - spec/basic/53_escaped_quotes/options.yml | 1 - spec/colors/basic-4.0.hrx | 4 - spec/colors/basic.hrx | 46 - .../color/hsla/error/four_args.hrx | 1 - .../color/hsla/four_args/alpha_percent.hrx | 1 - .../color/rgba/error/four_args.hrx | 1 - .../color/rgba/error/two_args.hrx | 1 - .../color/rgba/four_args/alpha_percent.hrx | 1 - spec/css/media/range/options.yml | 1 - spec/css/min_max/options.yml | 2 - spec/css/selector/reference_combinator.hrx | 1 - spec/directives/function/escaped.hrx | 1 - spec/directives/if/escaped.hrx | 1 - spec/directives/import/error/conflict.hrx | 6 - spec/directives/import/load.hrx | 12 - spec/errors/invalid-operation/plus.hrx | 1 - spec/errors/invalid-operation/times.hrx | 1 - spec/extend-tests/092_test_long_extendee.hrx | 19 - ...3_test_long_extendee_matches_supersets.hrx | 19 - ...94_test_long_extendee_runs_unification.hrx | 1 - spec/extend-tests/escaped_selector.hrx | 1 - spec/libsass-closed-issues/issue_100.hrx | 1 - .../issue_1093/argument/function-4.0.hrx | 1 - .../issue_1093/argument/function.hrx | 15 - .../issue_1093/argument/mixin-4.0.hrx | 1 - .../issue_1093/argument/mixin.hrx | 17 - spec/libsass-closed-issues/issue_1098.hrx | 1 - spec/libsass-closed-issues/issue_1124.hrx | 48 - .../issue_1231/options.yml | 1 - spec/libsass-closed-issues/issue_1333-4.0.hrx | 1 - spec/libsass-closed-issues/issue_1333.hrx | 31 - spec/libsass-closed-issues/issue_1394.hrx | 1 - spec/libsass-closed-issues/issue_1396-4.0.hrx | 1 - spec/libsass-closed-issues/issue_1396.hrx | 26 - spec/libsass-closed-issues/issue_1405.hrx | 1 - spec/libsass-closed-issues/issue_1413-4.0.hrx | 1 - spec/libsass-closed-issues/issue_1413.hrx | 283 ----- .../issue_1418/dynamic-3.5.hrx | 16 - .../issue_1418/dynamic-4.0.hrx | 4 - .../issue_1418/static-4.0.hrx | 1 - .../issue_1418/static.hrx | 13 - .../issue_1419/unquoted.hrx | 1 - spec/libsass-closed-issues/issue_152-4.0.hrx | 1 - spec/libsass-closed-issues/issue_152.hrx | 65 -- .../issue_1654/nested.hrx | 33 - spec/libsass-closed-issues/issue_1671-4.0.hrx | 1 - spec/libsass-closed-issues/issue_1671.hrx | 24 - spec/libsass-closed-issues/issue_1709-4.0.hrx | 1 - spec/libsass-closed-issues/issue_1709.hrx | 53 - spec/libsass-closed-issues/issue_1722-4.0.hrx | 4 - spec/libsass-closed-issues/issue_1722.hrx | 15 - .../issue_1739/interpolate/both-4.0.hrx | 1 - .../issue_1739/interpolate/both.hrx | 189 ---- .../issue_1739/interpolate/left-4.0.hrx | 1 - .../issue_1739/interpolate/left.hrx | 181 --- .../issue_1739/interpolate/right-4.0.hrx | 1 - .../issue_1739/interpolate/right.hrx | 173 --- spec/libsass-closed-issues/issue_442-4.0.hrx | 1 - spec/libsass-closed-issues/issue_442.hrx | 31 - .../issue_602/options.yml | 1 - spec/libsass-closed-issues/issue_870-4.0.hrx | 1 - spec/libsass-closed-issues/issue_870.hrx | 67 -- spec/libsass-closed-issues/issue_948-4.0.hrx | 1 - spec/libsass-closed-issues/issue_948.hrx | 21 - spec/libsass-todo-issues/issue_2082.hrx | 25 - .../errors/addition/alpha-channels.hrx | 14 - .../errors/subtraction/alpha-channels.hrx | 14 - spec/libsass/arithmetic.hrx | 338 ------ spec/libsass/color-names.hrx | 1006 ----------------- spec/libsass/inheritance.hrx | 148 --- .../interpolated-function-call-4.0.hrx | 1 - spec/libsass/interpolated-function-call.hrx | 25 - spec/libsass/interpolated-urls-4.0.hrx | 1 - spec/libsass/interpolated-urls.hrx | 48 - spec/libsass/propsets.hrx | 1 - .../00_concatenation/unspaced-4.0.hrx | 1 - .../interpolate/00_concatenation/unspaced.hrx | 138 --- .../11_escaped_literal/01_inline.hrx | 1 - .../11_escaped_literal/02_variable.hrx | 1 - .../11_escaped_literal/03_inline_double.hrx | 1 - .../11_escaped_literal/04_variable_double.hrx | 1 - .../05_variable_quoted_double.hrx | 1 - .../06_escape_interpolation.hrx | 1 - .../06_escape_interpolation.hrx | 1 - .../14_escapes_literal_numbers/01_inline.hrx | 1 - .../02_variable.hrx | 1 - .../03_inline_double.hrx | 1 - .../04_variable_double.hrx | 1 - .../05_variable_quoted_double.hrx | 1 - .../06_escape_interpolation.hrx | 1 - .../06_escape_interpolation.hrx | 1 - .../01_inline.hrx | 1 - .../02_variable.hrx | 1 - .../03_inline_double.hrx | 1 - .../04_variable_double.hrx | 1 - .../05_variable_quoted_double.hrx | 1 - .../06_escape_interpolation.hrx | 1 - .../06_escape_interpolation.hrx | 1 - .../01_inline.hrx | 1 - .../02_variable.hrx | 1 - .../03_inline_double.hrx | 1 - .../04_variable_double.hrx | 1 - .../05_variable_quoted_double.hrx | 1 - .../06_escape_interpolation.hrx | 1 - .../06_escape_interpolation.hrx | 1 - .../23_escapes_literal_specials/01_inline.hrx | 1 - .../02_variable.hrx | 1 - .../03_inline_double.hrx | 1 - .../04_variable_double.hrx | 1 - .../05_variable_quoted_double.hrx | 1 - .../06_escape_interpolation/options.yml | 1 - .../options.yml | 2 - .../todo_05_variable_quoted_double/input.scss | 13 - .../options.yml | 4 - .../todo_05_variable_quoted_double/output.css | 13 - .../todo_05_variable_quoted_double/todo.txt | 2 - .../06_escape_interpolation/options.yml | 1 - .../options.yml | 2 - .../todo_05_variable_quoted_double/input.scss | 13 - .../options.yml | 4 - .../todo_05_variable_quoted_double/output.css | 13 - .../todo_05_variable_quoted_double/todo.txt | 2 - .../06_escape_interpolation-4.0.hrx | 1 - .../06_escape_interpolation.hrx | 20 - .../06_escape_interpolation-4.0.hrx | 1 - .../30_base_test/06_escape_interpolation.hrx | 20 - .../addition/dimensions/pairs-4.0.hrx | 1 - .../operations/addition/dimensions/pairs.hrx | 534 --------- .../operations/addition/numbers/pairs-4.0.hrx | 1 - .../operations/addition/numbers/pairs.hrx | 382 ------- .../operations/addition/strings/pairs-4.0.hrx | 1 - .../operations/addition/strings/pairs.hrx | 518 --------- .../division/dimensions/pairs-4.0.hrx | 1 - .../operations/division/dimensions/pairs.hrx | 374 ------ .../operations/division/mixed/pairs-4.0.hrx | 1 - .../operations/division/mixed/pairs.hrx | 131 --- .../operations/division/numbers/pairs-4.0.hrx | 1 - .../operations/division/numbers/pairs.hrx | 126 --- .../operations/division/strings/pairs-4.0.hrx | 1 - .../operations/division/strings/pairs.hrx | 198 ---- .../logic_eq/dimensions/pairs-4.0.hrx | 1 - .../operations/logic_eq/dimensions/pairs.hrx | 582 ---------- .../operations/logic_eq/mixed/pairs-4.0.hrx | 1 - .../operations/logic_eq/mixed/pairs.hrx | 326 ------ .../operations/logic_eq/numbers/pairs-4.0.hrx | 1 - .../operations/logic_eq/numbers/pairs.hrx | 382 ------- .../operations/logic_eq/strings/pairs-4.0.hrx | 1 - .../operations/logic_eq/strings/pairs.hrx | 518 --------- .../operations/logic_ge/numbers/pairs.hrx | 382 ------- .../operations/logic_ge/strings/pairs.hrx | 254 ----- .../operations/logic_gt/numbers/pairs.hrx | 382 ------- .../operations/logic_gt/strings/pairs.hrx | 254 ----- .../operations/logic_le/numbers/pairs.hrx | 382 ------- .../operations/logic_le/strings/pairs.hrx | 254 ----- .../operations/logic_lt/numbers/pairs.hrx | 382 ------- .../operations/logic_lt/strings/pairs.hrx | 254 ----- .../logic_ne/dimensions/pairs-4.0.hrx | 1 - .../operations/logic_ne/dimensions/pairs.hrx | 582 ---------- .../operations/logic_ne/mixed/pairs-4.0.hrx | 1 - .../operations/logic_ne/mixed/pairs.hrx | 326 ------ .../operations/logic_ne/numbers/pairs-4.0.hrx | 1 - .../operations/logic_ne/numbers/pairs.hrx | 382 ------- .../operations/logic_ne/strings/pairs-4.0.hrx | 1 - .../operations/logic_ne/strings/pairs.hrx | 518 --------- .../operations/modulo/numbers/pairs.hrx | 318 ------ .../operations/modulo/strings/pairs.hrx | 254 ----- .../operations/multiply/numbers/pairs.hrx | 382 ------- .../operations/multiply/strings/pairs.hrx | 254 ----- .../subtract/dimensions/pairs-4.0.hrx | 1 - .../operations/subtract/dimensions/pairs.hrx | 350 ------ .../operations/subtract/numbers/pairs-4.0.hrx | 1 - .../operations/subtract/numbers/pairs.hrx | 230 ---- .../operations/subtract/strings/pairs-4.0.hrx | 1 - .../operations/subtract/strings/pairs.hrx | 278 ----- spec/sass/bem.hrx | 50 - spec/sass_4_0/options.yml | 1 - ..._interpolation_in_reference_combinator.hrx | 23 - spec/scss/function-names-4.0.hrx | 4 - spec/scss/function-names.hrx | 17 - spec/scss/ie-backslash.hrx | 1 - ...interpolation-operators-precedence-4.0.hrx | 1 - .../interpolation-operators-precedence.hrx | 348 ------ spec/scss/zero-compression-4.0.hrx | 4 - spec/scss/zero-compression.hrx | 21 - spec/types-4.0.hrx | 1 - spec/types.hrx | 98 -- .../values/colors/alpha_hex/initial_digit.hrx | 4 - .../colors/alpha_hex/initial_letter.hrx | 4 - .../identifiers/escape/normalize/options.yml | 1 - spec/values/identifiers/escape/script.hrx | 1 - 193 files changed, 14634 deletions(-) delete mode 100644 spec/basic/16_hex_arithmetic.hrx delete mode 100644 spec/basic/23_basic_value_interpolation.hrx delete mode 100644 spec/colors/basic.hrx delete mode 100644 spec/css/min_max/options.yml delete mode 100644 spec/extend-tests/092_test_long_extendee.hrx delete mode 100644 spec/extend-tests/093_test_long_extendee_matches_supersets.hrx delete mode 100644 spec/libsass-closed-issues/issue_1093/argument/function.hrx delete mode 100644 spec/libsass-closed-issues/issue_1093/argument/mixin.hrx delete mode 100644 spec/libsass-closed-issues/issue_1124.hrx delete mode 100644 spec/libsass-closed-issues/issue_1333.hrx delete mode 100644 spec/libsass-closed-issues/issue_1396.hrx delete mode 100644 spec/libsass-closed-issues/issue_1413.hrx delete mode 100644 spec/libsass-closed-issues/issue_1418/dynamic-3.5.hrx delete mode 100644 spec/libsass-closed-issues/issue_1418/static.hrx delete mode 100644 spec/libsass-closed-issues/issue_152.hrx delete mode 100644 spec/libsass-closed-issues/issue_1654/nested.hrx delete mode 100644 spec/libsass-closed-issues/issue_1671.hrx delete mode 100644 spec/libsass-closed-issues/issue_1709.hrx delete mode 100644 spec/libsass-closed-issues/issue_1722.hrx delete mode 100644 spec/libsass-closed-issues/issue_1739/interpolate/both.hrx delete mode 100644 spec/libsass-closed-issues/issue_1739/interpolate/left.hrx delete mode 100644 spec/libsass-closed-issues/issue_1739/interpolate/right.hrx delete mode 100644 spec/libsass-closed-issues/issue_442.hrx delete mode 100644 spec/libsass-closed-issues/issue_870.hrx delete mode 100644 spec/libsass-closed-issues/issue_948.hrx delete mode 100644 spec/libsass-todo-issues/issue_2082.hrx delete mode 100644 spec/libsass-todo-tests/errors/addition/alpha-channels.hrx delete mode 100644 spec/libsass-todo-tests/errors/subtraction/alpha-channels.hrx delete mode 100644 spec/libsass/arithmetic.hrx delete mode 100644 spec/libsass/color-names.hrx delete mode 100644 spec/libsass/inheritance.hrx delete mode 100644 spec/libsass/interpolated-function-call.hrx delete mode 100644 spec/libsass/interpolated-urls.hrx delete mode 100644 spec/parser/interpolate/00_concatenation/unspaced.hrx delete mode 100644 spec/parser/interpolate/24_escapes_double_quoted_specials/todo_05_variable_quoted_double-4.0/options.yml delete mode 100644 spec/parser/interpolate/24_escapes_double_quoted_specials/todo_05_variable_quoted_double/input.scss delete mode 100644 spec/parser/interpolate/24_escapes_double_quoted_specials/todo_05_variable_quoted_double/options.yml delete mode 100644 spec/parser/interpolate/24_escapes_double_quoted_specials/todo_05_variable_quoted_double/output.css delete mode 100644 spec/parser/interpolate/24_escapes_double_quoted_specials/todo_05_variable_quoted_double/todo.txt delete mode 100644 spec/parser/interpolate/25_escapes_single_quoted_specials/todo_05_variable_quoted_double-4.0/options.yml delete mode 100644 spec/parser/interpolate/25_escapes_single_quoted_specials/todo_05_variable_quoted_double/input.scss delete mode 100644 spec/parser/interpolate/25_escapes_single_quoted_specials/todo_05_variable_quoted_double/options.yml delete mode 100644 spec/parser/interpolate/25_escapes_single_quoted_specials/todo_05_variable_quoted_double/output.css delete mode 100644 spec/parser/interpolate/25_escapes_single_quoted_specials/todo_05_variable_quoted_double/todo.txt delete mode 100644 spec/parser/interpolate/29_binary_operation/06_escape_interpolation.hrx delete mode 100644 spec/parser/interpolate/30_base_test/06_escape_interpolation.hrx delete mode 100644 spec/parser/operations/addition/dimensions/pairs.hrx delete mode 100644 spec/parser/operations/addition/numbers/pairs.hrx delete mode 100644 spec/parser/operations/addition/strings/pairs.hrx delete mode 100644 spec/parser/operations/division/dimensions/pairs.hrx delete mode 100644 spec/parser/operations/division/mixed/pairs.hrx delete mode 100644 spec/parser/operations/division/numbers/pairs.hrx delete mode 100644 spec/parser/operations/division/strings/pairs.hrx delete mode 100644 spec/parser/operations/logic_eq/dimensions/pairs.hrx delete mode 100644 spec/parser/operations/logic_eq/mixed/pairs.hrx delete mode 100644 spec/parser/operations/logic_eq/numbers/pairs.hrx delete mode 100644 spec/parser/operations/logic_eq/strings/pairs.hrx delete mode 100644 spec/parser/operations/logic_ge/numbers/pairs.hrx delete mode 100644 spec/parser/operations/logic_ge/strings/pairs.hrx delete mode 100644 spec/parser/operations/logic_gt/numbers/pairs.hrx delete mode 100644 spec/parser/operations/logic_gt/strings/pairs.hrx delete mode 100644 spec/parser/operations/logic_le/numbers/pairs.hrx delete mode 100644 spec/parser/operations/logic_le/strings/pairs.hrx delete mode 100644 spec/parser/operations/logic_lt/numbers/pairs.hrx delete mode 100644 spec/parser/operations/logic_lt/strings/pairs.hrx delete mode 100644 spec/parser/operations/logic_ne/dimensions/pairs.hrx delete mode 100644 spec/parser/operations/logic_ne/mixed/pairs.hrx delete mode 100644 spec/parser/operations/logic_ne/numbers/pairs.hrx delete mode 100644 spec/parser/operations/logic_ne/strings/pairs.hrx delete mode 100644 spec/parser/operations/modulo/numbers/pairs.hrx delete mode 100644 spec/parser/operations/modulo/strings/pairs.hrx delete mode 100644 spec/parser/operations/multiply/numbers/pairs.hrx delete mode 100644 spec/parser/operations/multiply/strings/pairs.hrx delete mode 100644 spec/parser/operations/subtract/dimensions/pairs.hrx delete mode 100644 spec/parser/operations/subtract/numbers/pairs.hrx delete mode 100644 spec/parser/operations/subtract/strings/pairs.hrx delete mode 100644 spec/sass/bem.hrx delete mode 100644 spec/scss-tests/117_test_selector_interpolation_in_reference_combinator.hrx delete mode 100644 spec/scss/function-names.hrx delete mode 100644 spec/scss/interpolation-operators-precedence.hrx delete mode 100644 spec/scss/zero-compression.hrx delete mode 100644 spec/types.hrx diff --git a/spec/basic/16_hex_arithmetic.hrx b/spec/basic/16_hex_arithmetic.hrx deleted file mode 100644 index 0371a4d055..0000000000 --- a/spec/basic/16_hex_arithmetic.hrx +++ /dev/null @@ -1,152 +0,0 @@ -<===> options.yml ---- -:end_version: '3.5' - -<===> input.scss -div { - p01: #AbC; - p02: #AAbbCC; - p03: #AbC + hello; - p04: #AbC + 1; // add 1 to each triplet - p05: #AbC + #001; // triplet-wise addition - p06: #0000ff + 1; // add 1 to each triplet; ignore overflow because it doesn't correspond to a color name - p07: #0000ff + #000001; // convert overflow to name of color (blue) - p08: #00ffff + #000101; // aqua - p09: #000000; - p10: #000000 - 1; // black - p11: #000000 - #000001; // black - p12: #ffff00 + #010100; // yellow - p13: (#101010 / 7); - p14: #000 + 0; - p15a: 10 - #a2B; - p15b: 10 - #aa22BB; - p16: #000 - #001; - p17: #f0F + #101; - p18: 10 #a2B + 1; - p19a: (10 / #a2B); - p19b: (10 / #aa22BB); - p20: rgb(10,10,10) + #010001; - p21: #010000 + rgb(255, 255, 255); -} -<===> output.css -div { - p01: #AbC; - p02: #AAbbCC; - p03: #AbChello; - p04: #abbccd; - p05: #aabbdd; - p06: #0101ff; - p07: blue; - p08: cyan; - p09: #000000; - p10: black; - p11: black; - p12: yellow; - p13: #020202; - p14: black; - p15a: 10-#a2B; - p15b: 10-#aa22BB; - p16: black; - p17: magenta; - p18: 10 #ab23bc; - p19a: 10/#a2B; - p19b: 10/#aa22BB; - p20: #0b0a0b; - p21: white; -} - -<===> warning -DEPRECATION WARNING on line 5 of input.scss: -The operation `#AbC plus 1` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 6 of input.scss: -The operation `#AbC plus #001` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 7 of input.scss: -The operation `#0000ff plus 1` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 8 of input.scss: -The operation `#0000ff plus #000001` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 9 of input.scss: -The operation `#00ffff plus #000101` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 11 of input.scss: -The operation `#000000 minus 1` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 12 of input.scss: -The operation `#000000 minus #000001` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 13 of input.scss: -The operation `#ffff00 plus #010100` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 14 of input.scss: -The operation `#101010 div 7` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 15 of input.scss: -The operation `#000 plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 16 of input.scss: -The operation `10 minus #a2B` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 17 of input.scss: -The operation `10 minus #aa22BB` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 18 of input.scss: -The operation `#000 minus #001` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 19 of input.scss: -The operation `#f0F plus #101` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 20 of input.scss: -The operation `#a2B plus 1` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 21 of input.scss: -The operation `10 div #a2B` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 22 of input.scss: -The operation `10 div #aa22BB` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 23 of input.scss: -The operation `#0a0a0a plus #010001` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 24 of input.scss: -The operation `#010000 plus white` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions diff --git a/spec/basic/23_basic_value_interpolation-4.0.hrx b/spec/basic/23_basic_value_interpolation-4.0.hrx index 7af1fd9e7f..7d0be315cd 100644 --- a/spec/basic/23_basic_value_interpolation-4.0.hrx +++ b/spec/basic/23_basic_value_interpolation-4.0.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: '4.0' :todo: - libsass diff --git a/spec/basic/23_basic_value_interpolation.hrx b/spec/basic/23_basic_value_interpolation.hrx deleted file mode 100644 index 0c24281a20..0000000000 --- a/spec/basic/23_basic_value_interpolation.hrx +++ /dev/null @@ -1,37 +0,0 @@ -<===> options.yml ---- -:end_version: '3.5' -:warning_todo: -- libsass - -<===> input.scss -div { - a: hello#{world}; - a: hello #{world}; - b: 12#{3}; - b: type-of(12#{3}); - b: #{12 + 111}; - b: type-of(#{12 + 111}); -} -<===> output.css -div { - a: helloworld; - a: hello world; - b: 123; - b: string; - b: 123; - b: string; -} - -<===> warning -DEPRECATION WARNING on line 5 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("123") - -DEPRECATION WARNING on line 7 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{12 + 111}") diff --git a/spec/basic/53_escaped_quotes/options.yml b/spec/basic/53_escaped_quotes/options.yml index e0bbd72ad8..32792ae3c6 100644 --- a/spec/basic/53_escaped_quotes/options.yml +++ b/spec/basic/53_escaped_quotes/options.yml @@ -1,4 +1,3 @@ --- -:start_version: "3.7" :todo: - libsass diff --git a/spec/colors/basic-4.0.hrx b/spec/colors/basic-4.0.hrx index bce7f06ab9..c9a87337f6 100644 --- a/spec/colors/basic-4.0.hrx +++ b/spec/colors/basic-4.0.hrx @@ -1,7 +1,3 @@ -<===> options.yml ---- -:start_version: '4.0' - <===> input.scss p { color: rgb(255, 128, 0); diff --git a/spec/colors/basic.hrx b/spec/colors/basic.hrx deleted file mode 100644 index 4ba6d2c8ae..0000000000 --- a/spec/colors/basic.hrx +++ /dev/null @@ -1,46 +0,0 @@ -<===> options.yml ---- -:end_version: '3.5' - -<===> input.scss -p { - color: rgb(255, 128, 0); - color: red green blue; - color: (red) (green) (blue); - color: red + green; - color: red + hux; - color: unquote("red") + green; - color: unquote(red) + green; - color: unquote(0xf00); - foo: rgb(200, 150%, 170%); -} -<===> output.css -p { - color: #ff8000; - color: red green blue; - color: red green blue; - color: #ff8000; - color: redhux; - color: redgreen; - color: #ff8000; - color: 0xf00; - foo: #c8ffff; -} - -<===> warning -DEPRECATION WARNING on line 5 of input.scss: -The operation `red plus green` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING: Passing red, a non-string value, to unquote() -will be an error in future versions of Sass. - on line 8 of input.scss -DEPRECATION WARNING on line 8 of input.scss: -The operation `red plus green` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING: Passing 0xf00, a non-string value, to unquote() -will be an error in future versions of Sass. - on line 9 of input.scss diff --git a/spec/core_functions/color/hsla/error/four_args.hrx b/spec/core_functions/color/hsla/error/four_args.hrx index 8973d0bb09..3100aac879 100644 --- a/spec/core_functions/color/hsla/error/four_args.hrx +++ b/spec/core_functions/color/hsla/error/four_args.hrx @@ -69,7 +69,6 @@ Error: argument `$lightness` of `hsla($hue, $saturation, $lightness, $alpha)` mu ================================================================================ <===> alpha/type/options.yml --- -:start_version: '3.7' :todo: - libsass diff --git a/spec/core_functions/color/hsla/four_args/alpha_percent.hrx b/spec/core_functions/color/hsla/four_args/alpha_percent.hrx index ad9f5d611d..b4a5b2faaa 100644 --- a/spec/core_functions/color/hsla/four_args/alpha_percent.hrx +++ b/spec/core_functions/color/hsla/four_args/alpha_percent.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: '3.7' :todo: - libsass # sass/libsass#2719 diff --git a/spec/core_functions/color/rgba/error/four_args.hrx b/spec/core_functions/color/rgba/error/four_args.hrx index dc17d7b8b6..9a8dd30b4e 100644 --- a/spec/core_functions/color/rgba/error/four_args.hrx +++ b/spec/core_functions/color/rgba/error/four_args.hrx @@ -69,7 +69,6 @@ Error: argument `$blue` of `rgba($red, $green, $blue, $alpha)` must be a number ================================================================================ <===> alpha/unit/options.yml --- -:start_version: '3.7' :todo: - libsass diff --git a/spec/core_functions/color/rgba/error/two_args.hrx b/spec/core_functions/color/rgba/error/two_args.hrx index ff00d702a2..ddd647e7b9 100644 --- a/spec/core_functions/color/rgba/error/two_args.hrx +++ b/spec/core_functions/color/rgba/error/two_args.hrx @@ -46,7 +46,6 @@ Error: argument `$alpha` of `rgba($color, $alpha)` must be a number ================================================================================ <===> alpha/unit/options.yml --- -:start_version: '3.7' :todo: - libsass diff --git a/spec/core_functions/color/rgba/four_args/alpha_percent.hrx b/spec/core_functions/color/rgba/four_args/alpha_percent.hrx index 50895dbdd4..a350474ef5 100644 --- a/spec/core_functions/color/rgba/four_args/alpha_percent.hrx +++ b/spec/core_functions/color/rgba/four_args/alpha_percent.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: '3.7' :todo: - libsass # sass/libsass#2719 diff --git a/spec/css/media/range/options.yml b/spec/css/media/range/options.yml index 24dc08e9df..32792ae3c6 100644 --- a/spec/css/media/range/options.yml +++ b/spec/css/media/range/options.yml @@ -1,4 +1,3 @@ --- -:start_version: '3.7' :todo: - libsass diff --git a/spec/css/min_max/options.yml b/spec/css/min_max/options.yml deleted file mode 100644 index ad55d21bf3..0000000000 --- a/spec/css/min_max/options.yml +++ /dev/null @@ -1,2 +0,0 @@ ---- -:start_version: '3.7' diff --git a/spec/css/selector/reference_combinator.hrx b/spec/css/selector/reference_combinator.hrx index aaa78e59c4..ca1e255fc4 100644 --- a/spec/css/selector/reference_combinator.hrx +++ b/spec/css/selector/reference_combinator.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: '4.0' :todo: - libsass diff --git a/spec/directives/function/escaped.hrx b/spec/directives/function/escaped.hrx index f9f0bd05a3..cf99b0df6c 100644 --- a/spec/directives/function/escaped.hrx +++ b/spec/directives/function/escaped.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: "3.7" :todo: - libsass # sass/libsass#2700 diff --git a/spec/directives/if/escaped.hrx b/spec/directives/if/escaped.hrx index 1f9b89af29..eacfdedf32 100644 --- a/spec/directives/if/escaped.hrx +++ b/spec/directives/if/escaped.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: "3.7" :todo: - libsass # sass/libsass#2700 diff --git a/spec/directives/import/error/conflict.hrx b/spec/directives/import/error/conflict.hrx index d092643f74..09a33f6976 100644 --- a/spec/directives/import/error/conflict.hrx +++ b/spec/directives/import/error/conflict.hrx @@ -107,12 +107,6 @@ Error: It's not clear which file to import. Found: ' input.scss 3:9 root stylesheet -<===> -================================================================================ -<===> index/options.yml ---- -:start_version: '3.6' - <===> index/input.scss // This import can't be resolved because it could refer to either the partial or // the non-partial index file. diff --git a/spec/directives/import/load.hrx b/spec/directives/import/load.hrx index a6436b9444..8866e747e0 100644 --- a/spec/directives/import/load.hrx +++ b/spec/directives/import/load.hrx @@ -79,12 +79,6 @@ a { syntax: sass; } -<===> -================================================================================ -<===> precedence/normal_before_index/options.yml ---- -:start_version: '3.6' - <===> precedence/normal_before_index/input.scss @import "dir"; @@ -99,12 +93,6 @@ a { index: false; } -<===> -================================================================================ -<===> index/options.yml ---- -:start_version: '3.6' - <===> ================================================================================ <===> index/scss/dir/index.scss diff --git a/spec/errors/invalid-operation/plus.hrx b/spec/errors/invalid-operation/plus.hrx index 00d7cab2a5..f5c34ef5f2 100644 --- a/spec/errors/invalid-operation/plus.hrx +++ b/spec/errors/invalid-operation/plus.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: '4.0' :todo: - libsass diff --git a/spec/errors/invalid-operation/times.hrx b/spec/errors/invalid-operation/times.hrx index 96a3e9f501..bfe88c8252 100644 --- a/spec/errors/invalid-operation/times.hrx +++ b/spec/errors/invalid-operation/times.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: '4.0' :todo: - libsass diff --git a/spec/extend-tests/092_test_long_extendee.hrx b/spec/extend-tests/092_test_long_extendee.hrx deleted file mode 100644 index d6e0508e27..0000000000 --- a/spec/extend-tests/092_test_long_extendee.hrx +++ /dev/null @@ -1,19 +0,0 @@ -<===> options.yml ---- -:end_version: '3.5' -:warning_todo: -- libsass - -<===> input.scss -.foo.bar {a: b} -.baz {@extend .foo.bar} - -<===> output.css -.foo.bar, .baz { - a: b; -} - -<===> warning -DEPRECATION WARNING on line 2 of input.scss: -Extending a compound selector, .foo.bar, is deprecated and will not be supported in a future release. -See http://bit.ly/ExtendCompound for details. diff --git a/spec/extend-tests/093_test_long_extendee_matches_supersets.hrx b/spec/extend-tests/093_test_long_extendee_matches_supersets.hrx deleted file mode 100644 index 1a055295c5..0000000000 --- a/spec/extend-tests/093_test_long_extendee_matches_supersets.hrx +++ /dev/null @@ -1,19 +0,0 @@ -<===> options.yml ---- -:end_version: '3.5' -:warning_todo: -- libsass - -<===> input.scss -.foo.bar.bap {a: b} -.baz {@extend .foo.bar} - -<===> output.css -.foo.bar.bap, .bap.baz { - a: b; -} - -<===> warning -DEPRECATION WARNING on line 2 of input.scss: -Extending a compound selector, .foo.bar, is deprecated and will not be supported in a future release. -See http://bit.ly/ExtendCompound for details. diff --git a/spec/extend-tests/094_test_long_extendee_runs_unification.hrx b/spec/extend-tests/094_test_long_extendee_runs_unification.hrx index f159324125..11e6b29212 100644 --- a/spec/extend-tests/094_test_long_extendee_runs_unification.hrx +++ b/spec/extend-tests/094_test_long_extendee_runs_unification.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: '4.0' :todo: - libsass diff --git a/spec/extend-tests/escaped_selector.hrx b/spec/extend-tests/escaped_selector.hrx index a812b6feca..42ce20af61 100644 --- a/spec/extend-tests/escaped_selector.hrx +++ b/spec/extend-tests/escaped_selector.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: "3.7" :todo: - libsass # sass/libsass#2700 diff --git a/spec/libsass-closed-issues/issue_100.hrx b/spec/libsass-closed-issues/issue_100.hrx index 0106b6941d..8047ae1090 100644 --- a/spec/libsass-closed-issues/issue_100.hrx +++ b/spec/libsass-closed-issues/issue_100.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: "3.7" :todo: - libsass # sass/libsass#2700 diff --git a/spec/libsass-closed-issues/issue_1093/argument/function-4.0.hrx b/spec/libsass-closed-issues/issue_1093/argument/function-4.0.hrx index 2c2c410b71..a27faa533d 100644 --- a/spec/libsass-closed-issues/issue_1093/argument/function-4.0.hrx +++ b/spec/libsass-closed-issues/issue_1093/argument/function-4.0.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: '4.0' :todo: - libsass diff --git a/spec/libsass-closed-issues/issue_1093/argument/function.hrx b/spec/libsass-closed-issues/issue_1093/argument/function.hrx deleted file mode 100644 index 23f436bbb8..0000000000 --- a/spec/libsass-closed-issues/issue_1093/argument/function.hrx +++ /dev/null @@ -1,15 +0,0 @@ -<===> options.yml ---- -:end_version: '3.5' - -<===> input.scss -@function foo($bar:#{}) { - @return $bar; -} - -$foo: foo(); - -<===> error -Error: Invalid CSS after "...ction foo($bar:": expected expression (e.g. 1px, bold), was "#{}) {" - on line 1 of input.scss - Use --trace for backtrace. diff --git a/spec/libsass-closed-issues/issue_1093/argument/mixin-4.0.hrx b/spec/libsass-closed-issues/issue_1093/argument/mixin-4.0.hrx index ca3c76fae8..3a1d9e3b94 100644 --- a/spec/libsass-closed-issues/issue_1093/argument/mixin-4.0.hrx +++ b/spec/libsass-closed-issues/issue_1093/argument/mixin-4.0.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: '4.0' :todo: - libsass diff --git a/spec/libsass-closed-issues/issue_1093/argument/mixin.hrx b/spec/libsass-closed-issues/issue_1093/argument/mixin.hrx deleted file mode 100644 index 87cef4f2c7..0000000000 --- a/spec/libsass-closed-issues/issue_1093/argument/mixin.hrx +++ /dev/null @@ -1,17 +0,0 @@ -<===> options.yml ---- -:end_version: '3.5' - -<===> input.scss -@mixin foo($bar:#{}) { - @return $bar; -} - -foo { - @include foo; -} - -<===> error -Error: Invalid CSS after "@mixin foo($bar:": expected expression (e.g. 1px, bold), was "#{}) {" - on line 1 of input.scss - Use --trace for backtrace. diff --git a/spec/libsass-closed-issues/issue_1098.hrx b/spec/libsass-closed-issues/issue_1098.hrx index 2ddb956a7f..b3a8fa09b5 100644 --- a/spec/libsass-closed-issues/issue_1098.hrx +++ b/spec/libsass-closed-issues/issue_1098.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: "3.7" :todo: - libsass diff --git a/spec/libsass-closed-issues/issue_1124.hrx b/spec/libsass-closed-issues/issue_1124.hrx deleted file mode 100644 index b603820dd4..0000000000 --- a/spec/libsass-closed-issues/issue_1124.hrx +++ /dev/null @@ -1,48 +0,0 @@ -<===> options.yml ---- -:end_version: '3.5' -<===> input.scss -$foo: null; - -@mixin bar($bar:null) { - aa: type-of($bar); - ab: type-of(unqoute($bar)); -} - -@mixin baz($baz) { - ba: type-of($baz); - bb: type-of(unqoute($baz)); -} - -foo { - a: type-of(''); - b: type-of(unqoute('')); - c: type-of(null); - d: type-of(unquote(null)); - e: type-of($foo); - f: type-of(unquote($foo)); - @include bar; - @include baz(null); -} - -<===> output.css -foo { - a: string; - b: string; - c: null; - d: null; - e: null; - f: null; - aa: null; - ab: string; - ba: null; - bb: string; -} - -<===> warning -DEPRECATION WARNING: Passing null, a non-string value, to unquote() -will be an error in future versions of Sass. - on line 17 of input.scss -DEPRECATION WARNING: Passing null, a non-string value, to unquote() -will be an error in future versions of Sass. - on line 19 of input.scss diff --git a/spec/libsass-closed-issues/issue_1231/options.yml b/spec/libsass-closed-issues/issue_1231/options.yml index d7b48f3e04..3bb0723bb6 100644 --- a/spec/libsass-closed-issues/issue_1231/options.yml +++ b/spec/libsass-closed-issues/issue_1231/options.yml @@ -1,4 +1,3 @@ --- -:start_version: "3.7" :todo: - libsass # sass/libsass#2700 diff --git a/spec/libsass-closed-issues/issue_1333-4.0.hrx b/spec/libsass-closed-issues/issue_1333-4.0.hrx index 6da5311f8d..1850d5c83e 100644 --- a/spec/libsass-closed-issues/issue_1333-4.0.hrx +++ b/spec/libsass-closed-issues/issue_1333-4.0.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: '4.0' :todo: - libsass diff --git a/spec/libsass-closed-issues/issue_1333.hrx b/spec/libsass-closed-issues/issue_1333.hrx deleted file mode 100644 index 9d150c868d..0000000000 --- a/spec/libsass-closed-issues/issue_1333.hrx +++ /dev/null @@ -1,31 +0,0 @@ -<===> options.yml ---- -:end_version: '3.5' -:warning_todo: -- libsass - -<===> input.scss -@function baz() { - @return 'baz'; -} - -foo { - bar: baz()#{' !important'}; - bar: baz() #{' !important'}; -} - - -<===> output.css -foo { - bar: "baz" !important; - bar: "baz" !important; -} - -<===> warning -DEPRECATION WARNING on line 6 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote('#{baz()}" !important"') - -You can use the sass-convert command to automatically fix most cases. diff --git a/spec/libsass-closed-issues/issue_1394.hrx b/spec/libsass-closed-issues/issue_1394.hrx index bed6cf9001..11e471fcd0 100644 --- a/spec/libsass-closed-issues/issue_1394.hrx +++ b/spec/libsass-closed-issues/issue_1394.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: "3.7" :todo: - libsass # sass/libsass#2700 diff --git a/spec/libsass-closed-issues/issue_1396-4.0.hrx b/spec/libsass-closed-issues/issue_1396-4.0.hrx index e1c52f3682..cb9d019a98 100644 --- a/spec/libsass-closed-issues/issue_1396-4.0.hrx +++ b/spec/libsass-closed-issues/issue_1396-4.0.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: '4.0' :todo: - libsass diff --git a/spec/libsass-closed-issues/issue_1396.hrx b/spec/libsass-closed-issues/issue_1396.hrx deleted file mode 100644 index c658173d9b..0000000000 --- a/spec/libsass-closed-issues/issue_1396.hrx +++ /dev/null @@ -1,26 +0,0 @@ -<===> options.yml ---- -:end_version: '3.5' -:warning_todo: -- libsass - -<===> input.scss -foo { - foo: foo"bar"#{baz}; - foo: foo"bar"baz; -} - -<===> output.css -foo { - foo: foo "bar"baz; - foo: foo "bar" baz; -} - -<===> warning -DEPRECATION WARNING on line 2 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{foo "bar"}baz") - -You can use the sass-convert command to automatically fix most cases. diff --git a/spec/libsass-closed-issues/issue_1405.hrx b/spec/libsass-closed-issues/issue_1405.hrx index a318990028..af43ca3862 100644 --- a/spec/libsass-closed-issues/issue_1405.hrx +++ b/spec/libsass-closed-issues/issue_1405.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: "3.7" :todo: - libsass # sass/libsass#2700 diff --git a/spec/libsass-closed-issues/issue_1413-4.0.hrx b/spec/libsass-closed-issues/issue_1413-4.0.hrx index b4f72030a9..a165a98d2b 100644 --- a/spec/libsass-closed-issues/issue_1413-4.0.hrx +++ b/spec/libsass-closed-issues/issue_1413-4.0.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: '4.0' :todo: - libsass diff --git a/spec/libsass-closed-issues/issue_1413.hrx b/spec/libsass-closed-issues/issue_1413.hrx deleted file mode 100644 index dfc4d3cae9..0000000000 --- a/spec/libsass-closed-issues/issue_1413.hrx +++ /dev/null @@ -1,283 +0,0 @@ -<===> options.yml ---- -:end_version: '3.5' -:warning_todo: -- libsass - -<===> input.scss -div { - foo: 'A'#{B}; - foo: #{A}'B'; - foo: 'A'#{B}'C'; - foo: #{A}'B'#{C}; - foo: A#{B}'C'; - foo: 'A'#{B}C; - foo: #{A}B'C'; - foo: 'A'#{B}C'D'; - foo: 'A'B#{C}D'E'; - foo: A'B'#{C}D'E'; - foo: #{A}'B'C'D''E'; -} - -div { - foo: type-of('A'#{B}); - foo: type-of(#{A}'B'); - foo: type-of('A'#{B}'C'); - foo: type-of(#{A}'B'#{C}); - foo: type-of(A#{B}'C'); - foo: type-of('A'#{B}C); - foo: type-of(#{A}B'C'); - foo: type-of('A'#{B}C'D'); - foo: type-of('A'B#{C}D'E'); - foo: type-of(A'B'#{C}D'E'); - foo: type-of(#{A}'B'C'D''E'); -} - -div { - foo: length('A'#{B}); - foo: length(#{A}'B'); - foo: length('A'#{B}'C'); - foo: length(#{A}'B'#{C}); - foo: length(A#{B}'C'); - foo: length('A'#{B}C); - foo: length(#{A}B'C'); - foo: length('A'#{B}C'D'); - foo: length('A'B#{C}D'E'); - foo: length(A'B'#{C}D'E'); - foo: length(#{A}'B'C'D''E'); -} -<===> output.css -div { - foo: "A"B; - foo: A"B"; - foo: "A"B"C"; - foo: A"B"C; - foo: AB"C"; - foo: "A"BC; - foo: AB "C"; - foo: "A"BC "D"; - foo: "A" BCD "E"; - foo: A "B"CD "E"; - foo: A"B" C "D" "E"; -} - -div { - foo: string; - foo: string; - foo: string; - foo: string; - foo: string; - foo: string; - foo: string; - foo: string; - foo: string; - foo: string; - foo: string; -} - -div { - foo: 1; - foo: 1; - foo: 1; - foo: 1; - foo: 1; - foo: 1; - foo: 1; - foo: 1; - foo: 1; - foo: 1; - foo: 1; -} - -<===> warning -DEPRECATION WARNING on line 2 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote('"A"B') - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 4 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote('"A"B"C"') - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 7 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote('"A"BC') - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 9 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote('"A"B#{C "D"}') - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 11 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{A "B"}C#{D "E"}") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 16 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote('"A"B') - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 18 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote('"A"B"C"') - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 21 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote('"A"BC') - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 23 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote('"A"B#{C "D"}') - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 25 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{A "B"}C#{D "E"}") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 30 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote('"A"B') - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 32 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote('"A"B"C"') - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 35 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote('"A"BC') - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 37 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote('"A"B#{C "D"}') - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 39 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{A "B"}C#{D "E"}") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 17 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote('A"B"') - -DEPRECATION WARNING on line 19 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote('A"B"C') - -DEPRECATION WARNING on line 20 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote('AB"C"') - -DEPRECATION WARNING on line 22 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("A#{B "C"}") - -DEPRECATION WARNING on line 24 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{"A" B}C#{D "E"}") - -DEPRECATION WARNING on line 26 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("A#{"B" C "D" "E"}") - -DEPRECATION WARNING on line 31 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote('A"B"') - -DEPRECATION WARNING on line 33 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote('A"B"C') - -DEPRECATION WARNING on line 34 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote('AB"C"') - -DEPRECATION WARNING on line 36 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("A#{B "C"}") - -DEPRECATION WARNING on line 38 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{"A" B}C#{D "E"}") - -DEPRECATION WARNING on line 40 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("A#{"B" C "D" "E"}") diff --git a/spec/libsass-closed-issues/issue_1418/dynamic-3.5.hrx b/spec/libsass-closed-issues/issue_1418/dynamic-3.5.hrx deleted file mode 100644 index 94175355eb..0000000000 --- a/spec/libsass-closed-issues/issue_1418/dynamic-3.5.hrx +++ /dev/null @@ -1,16 +0,0 @@ -<===> options.yml ---- -:end_version: '3.5' - -<===> input.scss -foo { - color: call(missing, $a: b); -} - -<===> error -DEPRECATION WARNING: Passing a string to call() is deprecated and will be illegal -in Sass 4.0. Use call(get-function("missing")) instead. - -Error: Function missing doesn't support keyword arguments - on line 2 of spec/libsass-closed-issues/issue_1418/dynamic-3.5/input.scss - Use --trace for backtrace. diff --git a/spec/libsass-closed-issues/issue_1418/dynamic-4.0.hrx b/spec/libsass-closed-issues/issue_1418/dynamic-4.0.hrx index 41225b4a44..178f3ca3f3 100644 --- a/spec/libsass-closed-issues/issue_1418/dynamic-4.0.hrx +++ b/spec/libsass-closed-issues/issue_1418/dynamic-4.0.hrx @@ -1,7 +1,3 @@ -<===> options.yml ---- -:start_version: '4.0' - <===> input.scss foo { color: call(missing, $a: b); diff --git a/spec/libsass-closed-issues/issue_1418/static-4.0.hrx b/spec/libsass-closed-issues/issue_1418/static-4.0.hrx index b3cdd19059..7f59779cf7 100644 --- a/spec/libsass-closed-issues/issue_1418/static-4.0.hrx +++ b/spec/libsass-closed-issues/issue_1418/static-4.0.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: '4.0' :todo: - libsass diff --git a/spec/libsass-closed-issues/issue_1418/static.hrx b/spec/libsass-closed-issues/issue_1418/static.hrx deleted file mode 100644 index 9d5a14e49d..0000000000 --- a/spec/libsass-closed-issues/issue_1418/static.hrx +++ /dev/null @@ -1,13 +0,0 @@ -<===> options.yml ---- -:end_version: '3.5' - -<===> input.scss -foo { - color: missing($a: b); -} - -<===> error -Error: Function missing doesn't support keyword arguments - on line 2 of input.scss - Use --trace for backtrace. diff --git a/spec/libsass-closed-issues/issue_1419/unquoted.hrx b/spec/libsass-closed-issues/issue_1419/unquoted.hrx index d21592abea..e882a9b34d 100644 --- a/spec/libsass-closed-issues/issue_1419/unquoted.hrx +++ b/spec/libsass-closed-issues/issue_1419/unquoted.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: "3.7" :todo: - libsass # sass/libsass#2700 diff --git a/spec/libsass-closed-issues/issue_152-4.0.hrx b/spec/libsass-closed-issues/issue_152-4.0.hrx index d1498c60fc..ccfa6612fa 100644 --- a/spec/libsass-closed-issues/issue_152-4.0.hrx +++ b/spec/libsass-closed-issues/issue_152-4.0.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: '4.0' :todo: - libsass diff --git a/spec/libsass-closed-issues/issue_152.hrx b/spec/libsass-closed-issues/issue_152.hrx deleted file mode 100644 index f5df7bddc6..0000000000 --- a/spec/libsass-closed-issues/issue_152.hrx +++ /dev/null @@ -1,65 +0,0 @@ -<===> options.yml ---- -:end_version: '3.5' -:warning_todo: -- libsass - -<===> input.scss -$foo: 10; -$bar: 10%; - -foo { - a: #{10}% 100%; - a: #{10} % 100%; - a: #{10} %100%; - a: 10% 100%; - a: 10 % 100%; - a: 10 %100%; - a: $foo 100%; - a: $foo % 100%; - a: $foo %100%; - a: $bar 100%; - a: $bar % 100%; - a: $bar %100%; -} - -<===> output.css -foo { - a: 10% 100%; - a: 10 % 100%; - a: 10 %100%; - a: 10% 100%; - a: 10%; - a: 10%; - a: 10 100%; - a: 10%; - a: 10%; - a: 10% 100%; - a: 10%; - a: 10%; -} - -<===> warning -DEPRECATION WARNING on line 5 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10% 100%") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 6 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 % 100%") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 7 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 %100%") - -You can use the sass-convert command to automatically fix most cases. diff --git a/spec/libsass-closed-issues/issue_1654/nested.hrx b/spec/libsass-closed-issues/issue_1654/nested.hrx deleted file mode 100644 index 3a600e7116..0000000000 --- a/spec/libsass-closed-issues/issue_1654/nested.hrx +++ /dev/null @@ -1,33 +0,0 @@ -<===> options.yml ---- -:end_version: '3.5' -:warning_todo: -- libsass - -<===> input.scss -moo { - &%foo { - &bar { - display: inner; - } - &.bar { - display: outer; - } - } -} - -zoo { - &foo { - @extend moo%foobar; - } -} - -<===> output.css -zoofoo { - display: inner; -} - -<===> warning -DEPRECATION WARNING on line 14 of input.scss: -Extending a compound selector, moo%foobar, is deprecated and will not be supported in a future release. -See http://bit.ly/ExtendCompound for details. diff --git a/spec/libsass-closed-issues/issue_1671-4.0.hrx b/spec/libsass-closed-issues/issue_1671-4.0.hrx index 4b3b4adeb5..37a6b017c7 100644 --- a/spec/libsass-closed-issues/issue_1671-4.0.hrx +++ b/spec/libsass-closed-issues/issue_1671-4.0.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: '4.0' :todo: - libsass diff --git a/spec/libsass-closed-issues/issue_1671.hrx b/spec/libsass-closed-issues/issue_1671.hrx deleted file mode 100644 index 090c5eda9a..0000000000 --- a/spec/libsass-closed-issues/issue_1671.hrx +++ /dev/null @@ -1,24 +0,0 @@ -<===> options.yml ---- -:end_version: '3.5' - -<===> input.scss -$foo: 5px; -a { - background: url('img.png') no-repeat 6px 0 / #{$foo}; - background: url('img.png') no-repeat 6px 1 / #{$foo}; - background: url('img.png') no-repeat 6px 1px / #{$foo}; - background: url('img.png') no-repeat 6px #{$foo} / 0; - background: url('img.png') no-repeat 6px #{$foo} / 1; - background: url('img.png') no-repeat 6px #{$foo} / 1px; -} - -<===> output.css -a { - background: url("img.png") no-repeat 6px 0 / 5px; - background: url("img.png") no-repeat 6px 1 / 5px; - background: url("img.png") no-repeat 6px 1px / 5px; - background: url("img.png") no-repeat 6px 5px / 0; - background: url("img.png") no-repeat 6px 5px / 1; - background: url("img.png") no-repeat 6px 5px / 1px; -} diff --git a/spec/libsass-closed-issues/issue_1709-4.0.hrx b/spec/libsass-closed-issues/issue_1709-4.0.hrx index 46244db7ef..de85239deb 100644 --- a/spec/libsass-closed-issues/issue_1709-4.0.hrx +++ b/spec/libsass-closed-issues/issue_1709-4.0.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: '4.0' :todo: - libsass diff --git a/spec/libsass-closed-issues/issue_1709.hrx b/spec/libsass-closed-issues/issue_1709.hrx deleted file mode 100644 index 005b824219..0000000000 --- a/spec/libsass-closed-issues/issue_1709.hrx +++ /dev/null @@ -1,53 +0,0 @@ -<===> options.yml ---- -:end_version: '3.5' -:warning_todo: -- libsass - -<===> input.scss -@mixin transition( $prefix_properties, $transitions... ) { - - @if not str-index( inspect( $transitions ), ',') { - $transitions: ( $transitions ); - } - - @each $prefix in -webkit-, -moz-, -ms-, -o-, '' { - - $prefixed: ''; - - @each $transition in $transitions { - - @if $prefix_properties and '' != $prefix { - $prefixed: #{$prefix}$transition,$transition; - } @else { - $prefixed: $transition; - } - - - } - - #{$prefix}transition: $prefixed; - } -} - -.my-element { - @include transition( true, transform 0.25s linear ); -} - -<===> output.css -.my-element { - -webkit-transition: -webkit-transform 0.25s linear, transform 0.25s linear; - -moz-transition: -moz-transform 0.25s linear, transform 0.25s linear; - -ms-transition: -ms-transform 0.25s linear, transform 0.25s linear; - -o-transition: -o-transform 0.25s linear, transform 0.25s linear; - transition: transform 0.25s linear; -} - -<===> warning -DEPRECATION WARNING on line 14 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{$prefix}#{$transition}") - -You can use the sass-convert command to automatically fix most cases. diff --git a/spec/libsass-closed-issues/issue_1722-4.0.hrx b/spec/libsass-closed-issues/issue_1722-4.0.hrx index 44f05ee503..a047f0c8b2 100644 --- a/spec/libsass-closed-issues/issue_1722-4.0.hrx +++ b/spec/libsass-closed-issues/issue_1722-4.0.hrx @@ -1,7 +1,3 @@ -<===> options.yml ---- -:start_version: '4.0' - <===> input.scss $score: (item-height: 1.12em); .test { diff --git a/spec/libsass-closed-issues/issue_1722.hrx b/spec/libsass-closed-issues/issue_1722.hrx deleted file mode 100644 index 800600f8e0..0000000000 --- a/spec/libsass-closed-issues/issue_1722.hrx +++ /dev/null @@ -1,15 +0,0 @@ -<===> options.yml ---- -:end_version: '3.5' - -<===> input.scss -$score: (item-height: 1.12em); -.test { - background-position: 0 -#{map-get($score, item-height)}; -} - - -<===> output.css -.test { - background-position: 0 -1.12em; -} diff --git a/spec/libsass-closed-issues/issue_1739/interpolate/both-4.0.hrx b/spec/libsass-closed-issues/issue_1739/interpolate/both-4.0.hrx index 2c6d9d9553..837cce8849 100644 --- a/spec/libsass-closed-issues/issue_1739/interpolate/both-4.0.hrx +++ b/spec/libsass-closed-issues/issue_1739/interpolate/both-4.0.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: '4.0' :todo: - libsass diff --git a/spec/libsass-closed-issues/issue_1739/interpolate/both.hrx b/spec/libsass-closed-issues/issue_1739/interpolate/both.hrx deleted file mode 100644 index 94136b9b3b..0000000000 --- a/spec/libsass-closed-issues/issue_1739/interpolate/both.hrx +++ /dev/null @@ -1,189 +0,0 @@ -<===> options.yml ---- -:end_version: '3.5' -:warning_todo: -- libsass - -<===> input.scss -div { - baz: #{1/2}/#{1/2}; - baz: #{1/ 2}/ #{1/ 2}; - baz: #{1 /2} /#{1 /2}; - baz: #{1 / 2} / #{1 / 2}; -} - -add { - baz: #{1+2}+#{1+2}; - baz: #{1+ 2}+ #{1+ 2}; - baz: #{1 +2} +#{1 +2}; - baz: #{1 + 2} + #{1 + 2}; -} - -sub { - baz: #{1-2}-#{1-2}; - baz: #{1- 2}- #{1- 2}; - baz: #{1 -2} -#{1 -2}; - baz: #{1 - 2} - #{1 - 2}; -} - -mul { - baz: #{1*2}*#{1*2}; - baz: #{1* 2}* #{1* 2}; - baz: #{1 *2} *#{1 *2}; - baz: #{1 * 2} * #{1 * 2}; -} - -mod { - baz: #{1%2}%#{1%2}; - baz: #{1% 2}% #{1% 2}; - baz: #{1 %2} %#{1 %2}; - baz: #{1 % 2} % #{1 % 2}; -} -<===> output.css -div { - baz: 1/2/1/2; - baz: 1/2/ 1/2; - baz: 1/2 /1/2; - baz: 1/2 / 1/2; -} - -add { - baz: 3+3; - baz: 3+ 3; - baz: 3 +3; - baz: 3 + 3; -} - -sub { - baz: -1--1; - baz: -1- -1; - baz: 1 -2 -1 -2; - baz: -1 - -1; -} - -mul { - baz: 2*2; - baz: 2* 2; - baz: 2 *2; - baz: 2 * 2; -} - -mod { - baz: 1% 2%1% 2; - baz: 1% 2% 1% 2; - baz: 1 %1; - baz: 1 % 1; -} - -<===> warning -DEPRECATION WARNING on line 9 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{1 + 2}+#{1 + 2}") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 10 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{1 + 2}+ #{1 + 2}") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 11 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{1 + 2} +#{1 + 2}") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 12 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{1 + 2} + #{1 + 2}") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 17 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{1 - 2}- #{1 - 2}") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 19 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{1 - 2} - #{1 - 2}") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 23 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{1 * 2}*#{1 * 2}") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 24 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{1 * 2}* #{1 * 2}") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 25 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{1 * 2} *#{1 * 2}") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 26 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{1 * 2} * #{1 * 2}") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 30 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{1% 2}%#{1% 2}") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 31 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{1% 2}% #{1% 2}") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 32 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{1 % 2} %#{1 % 2}") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 33 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{1 % 2} % #{1 % 2}") - -You can use the sass-convert command to automatically fix most cases. diff --git a/spec/libsass-closed-issues/issue_1739/interpolate/left-4.0.hrx b/spec/libsass-closed-issues/issue_1739/interpolate/left-4.0.hrx index 91a2fce109..960685f7b2 100644 --- a/spec/libsass-closed-issues/issue_1739/interpolate/left-4.0.hrx +++ b/spec/libsass-closed-issues/issue_1739/interpolate/left-4.0.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: '4.0' :todo: - libsass diff --git a/spec/libsass-closed-issues/issue_1739/interpolate/left.hrx b/spec/libsass-closed-issues/issue_1739/interpolate/left.hrx deleted file mode 100644 index d31aa3e2a9..0000000000 --- a/spec/libsass-closed-issues/issue_1739/interpolate/left.hrx +++ /dev/null @@ -1,181 +0,0 @@ -<===> options.yml ---- -:end_version: '3.5' -:warning_todo: -- libsass - -<===> input.scss -div { - baz: #{1/2}/3; - baz: #{1/ 2}/ 3; - baz: #{1 /2} /3; - baz: #{1 / 2} / 3; -} - -add { - baz: #{1+2}+3; - baz: #{1+ 2}+ 3; - baz: #{1 +2} +3; - baz: #{1 + 2} + 3; -} - -sub { - baz: #{1-2}-3; - baz: #{1- 2}- 3; - baz: #{1 -2} -3; - baz: #{1 - 2} - 3; -} - -mul { - baz: #{1*2}*3; - baz: #{1* 2}* 3; - baz: #{1 *2} *3; - baz: #{1 * 2} * 3; -} - -mod { - baz: #{1%2}%3; - baz: #{1% 2}% 3; - baz: #{1 %2} %3; - baz: #{1 % 2} % 3; -} -<===> output.css -div { - baz: 1/2/3; - baz: 1/2/ 3; - baz: 1/2 /3; - baz: 1/2 / 3; -} - -add { - baz: 3+3; - baz: 3+ 3; - baz: 3 +3; - baz: 3 + 3; -} - -sub { - baz: -1-3; - baz: -1- 3; - baz: 1 -2 -3; - baz: -1 - 3; -} - -mul { - baz: 2*3; - baz: 2* 3; - baz: 2 *3; - baz: 2 * 3; -} - -mod { - baz: 1% 2%3; - baz: 1% 2% 3; - baz: 1 %3; - baz: 1 % 3; -} - -<===> warning -DEPRECATION WARNING on line 9 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{1 + 2}+3") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 10 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{1 + 2}+ 3") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 11 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{1 + 2} +3") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 12 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{1 + 2} + 3") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 19 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{1 - 2} - 3") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 23 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{1 * 2}*3") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 24 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{1 * 2}* 3") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 25 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{1 * 2} *3") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 26 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{1 * 2} * 3") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 30 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{1% 2}%3") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 31 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{1% 2}% 3") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 32 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{1 % 2} %3") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 33 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{1 % 2} % 3") - -You can use the sass-convert command to automatically fix most cases. diff --git a/spec/libsass-closed-issues/issue_1739/interpolate/right-4.0.hrx b/spec/libsass-closed-issues/issue_1739/interpolate/right-4.0.hrx index 48f1b0a956..3f57ddb3c6 100644 --- a/spec/libsass-closed-issues/issue_1739/interpolate/right-4.0.hrx +++ b/spec/libsass-closed-issues/issue_1739/interpolate/right-4.0.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: '4.0' :todo: - libsass diff --git a/spec/libsass-closed-issues/issue_1739/interpolate/right.hrx b/spec/libsass-closed-issues/issue_1739/interpolate/right.hrx deleted file mode 100644 index d5c8604099..0000000000 --- a/spec/libsass-closed-issues/issue_1739/interpolate/right.hrx +++ /dev/null @@ -1,173 +0,0 @@ -<===> options.yml ---- -:end_version: '3.5' -:warning_todo: -- libsass - -<===> input.scss -div { - baz: 3/#{1/2}; - baz: 3/ #{1/ 2}; - baz: 3 /#{1 /2}; - baz: 3 / #{1 / 2}; -} - -add { - baz: 3+#{1+2}; - baz: 3+ #{1+ 2}; - baz: 3 +#{1 +2}; - baz: 3 + #{1 + 2}; -} - -sub { - baz: 3-#{1-2}; - baz: 3- #{1- 2}; - baz: 3 -#{1 -2}; - baz: 3 - #{1 - 2}; -} - -mul { - baz: 3*#{1*2}; - baz: 3* #{1* 2}; - baz: 3 *#{1 *2}; - baz: 3 * #{1 * 2}; -} - -mod { - baz: 3%#{1%2}; - baz: 3% #{1% 2}; - baz: 3 %#{1 %2}; - baz: 3 % #{1 % 2}; -} -<===> output.css -div { - baz: 3/1/2; - baz: 3/ 1/2; - baz: 3 /1/2; - baz: 3 / 1/2; -} - -add { - baz: 3+3; - baz: 3+ 3; - baz: 3 +3; - baz: 3 + 3; -} - -sub { - baz: 3--1; - baz: 3- -1; - baz: 3 -1 -2; - baz: 3 - -1; -} - -mul { - baz: 3*2; - baz: 3* 2; - baz: 3 *2; - baz: 3 * 2; -} - -mod { - baz: 3%1% 2; - baz: 3% 1% 2; - baz: 3 %1; - baz: 3 % 1; -} - -<===> warning -DEPRECATION WARNING on line 9 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("3+#{1 + 2}") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 10 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("3+ #{1 + 2}") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 11 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("3 +#{1 + 2}") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 12 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("3 + #{1 + 2}") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 17 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("3- #{1 - 2}") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 19 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("3 - #{1 - 2}") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 23 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("3*#{1 * 2}") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 24 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("3* #{1 * 2}") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 25 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("3 *#{1 * 2}") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 26 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("3 * #{1 * 2}") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 32 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("3 %#{1 % 2}") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 33 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("3 % #{1 % 2}") - -You can use the sass-convert command to automatically fix most cases. diff --git a/spec/libsass-closed-issues/issue_442-4.0.hrx b/spec/libsass-closed-issues/issue_442-4.0.hrx index 2f00b329ac..32f1c09af3 100644 --- a/spec/libsass-closed-issues/issue_442-4.0.hrx +++ b/spec/libsass-closed-issues/issue_442-4.0.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: '4.0' :todo: - libsass diff --git a/spec/libsass-closed-issues/issue_442.hrx b/spec/libsass-closed-issues/issue_442.hrx deleted file mode 100644 index dff1a49fda..0000000000 --- a/spec/libsass-closed-issues/issue_442.hrx +++ /dev/null @@ -1,31 +0,0 @@ -<===> options.yml ---- -:end_version: '3.5' -:warning_todo: -- libsass - -<===> input.scss -$lhs: (100/10)#{rem}; -$rhs: 10rem; - -foo { - a: $lhs; - a: $rhs; - a: $lhs == $rhs; -} - -<===> output.css -foo { - a: 10rem; - a: 10rem; - a: false; -} - -<===> warning -DEPRECATION WARNING on line 1 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{100 / 10}rem") - -You can use the sass-convert command to automatically fix most cases. diff --git a/spec/libsass-closed-issues/issue_602/options.yml b/spec/libsass-closed-issues/issue_602/options.yml index d7b48f3e04..3bb0723bb6 100644 --- a/spec/libsass-closed-issues/issue_602/options.yml +++ b/spec/libsass-closed-issues/issue_602/options.yml @@ -1,4 +1,3 @@ --- -:start_version: "3.7" :todo: - libsass # sass/libsass#2700 diff --git a/spec/libsass-closed-issues/issue_870-4.0.hrx b/spec/libsass-closed-issues/issue_870-4.0.hrx index 6075e7b9e0..d5cfafe19f 100644 --- a/spec/libsass-closed-issues/issue_870-4.0.hrx +++ b/spec/libsass-closed-issues/issue_870-4.0.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: '4.0' :todo: - libsass diff --git a/spec/libsass-closed-issues/issue_870.hrx b/spec/libsass-closed-issues/issue_870.hrx deleted file mode 100644 index f7b2a48715..0000000000 --- a/spec/libsass-closed-issues/issue_870.hrx +++ /dev/null @@ -1,67 +0,0 @@ -<===> options.yml ---- -:end_version: '3.5' -:warning_todo: -- libsass - -<===> input.scss -$quoted-strings-csv: "alpha", "beta", 'gamma', 'delta'; -$quoted-strings-ssv: "alpha" "beta" 'gamma' 'delta'; - -.csv { - output: $quoted-strings-csv; - output: #{$quoted-strings-csv}; - output: "[#{$quoted-strings-csv}]"; - output: "#{$quoted-strings-csv}"; - output: "["#{$quoted-strings-csv}"]"; - output: '#{$quoted-strings-csv}'; - output: "['#{$quoted-strings-csv}']"; -} - -.ssv { - output: $quoted-strings-ssv; - output: #{$quoted-strings-ssv}; - output: "[#{$quoted-strings-ssv}]"; - output: "#{$quoted-strings-ssv}"; - output: "["#{$quoted-strings-ssv}"]"; - output: '#{$quoted-strings-ssv}'; - output: "['#{$quoted-strings-ssv}']"; -} - -<===> output.css -.csv { - output: "alpha", "beta", "gamma", "delta"; - output: alpha, beta, gamma, delta; - output: "[alpha, beta, gamma, delta]"; - output: "alpha, beta, gamma, delta"; - output: "["alpha, beta, gamma, delta"]"; - output: "alpha, beta, gamma, delta"; - output: "['alpha, beta, gamma, delta']"; -} - -.ssv { - output: "alpha" "beta" "gamma" "delta"; - output: alpha beta gamma delta; - output: "[alpha beta gamma delta]"; - output: "alpha beta gamma delta"; - output: "["alpha beta gamma delta"]"; - output: "alpha beta gamma delta"; - output: "['alpha beta gamma delta']"; -} - -<===> warning -DEPRECATION WARNING on line 9 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote('"["#{$quoted-strings-csv}"]"') - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 19 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote('"["#{$quoted-strings-ssv}"]"') - -You can use the sass-convert command to automatically fix most cases. diff --git a/spec/libsass-closed-issues/issue_948-4.0.hrx b/spec/libsass-closed-issues/issue_948-4.0.hrx index ce6fad7c8f..3fc74955cc 100644 --- a/spec/libsass-closed-issues/issue_948-4.0.hrx +++ b/spec/libsass-closed-issues/issue_948-4.0.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: '4.0' :todo: - libsass diff --git a/spec/libsass-closed-issues/issue_948.hrx b/spec/libsass-closed-issues/issue_948.hrx deleted file mode 100644 index 7e2f750861..0000000000 --- a/spec/libsass-closed-issues/issue_948.hrx +++ /dev/null @@ -1,21 +0,0 @@ -<===> options.yml ---- -:end_version: '3.5' -:warning_todo: -- libsass - -<===> input.scss -foo { bar: 10 * 5#{px}; } -<===> output.css -foo { - bar: 50px; -} - -<===> warning -DEPRECATION WARNING on line 1 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 * 5}px") - -You can use the sass-convert command to automatically fix most cases. diff --git a/spec/libsass-todo-issues/issue_2082.hrx b/spec/libsass-todo-issues/issue_2082.hrx deleted file mode 100644 index 20cd51188d..0000000000 --- a/spec/libsass-todo-issues/issue_2082.hrx +++ /dev/null @@ -1,25 +0,0 @@ -<===> options.yml ---- -:end_version: '3.6' - -<===> input.scss -$prefix: ""; -$suffix: bar; -$class: $prefix#{"-"}#{$suffix}; - -#{$class} { - foo: bar; -} - -<===> error -DEPRECATION WARNING on line 3 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote('#{$prefix}"-"#{$suffix}') - -You can use the sass-convert command to automatically fix most cases. - -Error: Invalid CSS after "": expected selector, was """-bar" - on line 5 of input.scss - Use --trace for backtrace. diff --git a/spec/libsass-todo-tests/errors/addition/alpha-channels.hrx b/spec/libsass-todo-tests/errors/addition/alpha-channels.hrx deleted file mode 100644 index 09470d2340..0000000000 --- a/spec/libsass-todo-tests/errors/addition/alpha-channels.hrx +++ /dev/null @@ -1,14 +0,0 @@ -<===> options.yml ---- -:end_version: '3.5' - -<===> input.scss -$a: rgba(16,16,16,0.5); -$b: #aAa; -foo { - bar: ($a + $b); -} -<===> error -Error: Alpha channels must be equal: rgba(16, 16, 16, 0.5) + #aAa - on line 4 of input.scss - Use --trace for backtrace. diff --git a/spec/libsass-todo-tests/errors/subtraction/alpha-channels.hrx b/spec/libsass-todo-tests/errors/subtraction/alpha-channels.hrx deleted file mode 100644 index 60d61545a5..0000000000 --- a/spec/libsass-todo-tests/errors/subtraction/alpha-channels.hrx +++ /dev/null @@ -1,14 +0,0 @@ -<===> options.yml ---- -:end_version: '3.5' - -<===> input.scss -$a: rgba(16,16,16,0.5); -$b: #aAa; -foo { - bar: ($a - $b); -} -<===> error -Error: Alpha channels must be equal: rgba(16, 16, 16, 0.5) - #aAa - on line 4 of input.scss - Use --trace for backtrace. diff --git a/spec/libsass/arithmetic.hrx b/spec/libsass/arithmetic.hrx deleted file mode 100644 index b6106168a5..0000000000 --- a/spec/libsass/arithmetic.hrx +++ /dev/null @@ -1,338 +0,0 @@ -<===> options.yml ---- -:end_version: '3.5' -:warning_todo: -- libsass - -<===> input.scss -div { - /* number + whatever */ - font: 3 + 2; - font: 3 + 50%; - font: 3 + 12px; - font: 3 + #111111; - font: 3 + hello; - font: 3 + "hello"; - font: 3 + true; - font: 3 + false; - font: 3 + not-there(hello); - font: 3 + un#{quo}te("hello"); - font: 3 + (a, b, c); - font: 3 + (a b c); - /* number - whatever */ - font: 3 - 2; - font: 3 - 50%; - font: 3 - 12px; - font: 3 - #111111; - font: 3 - hello; - font: 3 - "hello"; - font: 3 - true; - font: 3 - false; - font: 3 - not-there(hello); - font: 3 - un#{quo}te("hello"); - font: 3 - (a, b, c); - font: 3 - (a b c); - /* number * whatever */ - font: 3 * 2; - font: 3 * 50%; - font: 3 * 12px; - font: 3 * #111111; - // // the following commented expressions have invalid operands - // font: 3 * hello; - // font: 3 * "hello"; - // font: 3 * true; - // font: 3 * false; - // font: 3 * not-there(hello); - // font: 3 * un#{quo}te("hello"); - // font: 3 * (a, b, c); - // font: 3 * (a b c); - /* number / whatever */ - font: 3 / 2; - font: (3 / 2); - font: 4 * 3 / 2; - font: 3 / 2 * 4; - // font: (100 / 50%); // results in mixed unit - // font: (3 / 12px); // results in mixed unit - font: (3 / #111111); - font: (3 / hello); - font: (3 / "hello"); - font: (3 / true); - font: (3 / false); - font: (3 / not-there(hello)); - font: (3 / un#{quo}te("hello")); - font: (3 / (a, b, c)); - font: (3 / (a b c)); - /* number % whatever */ - font: 3 % 2; -// font: 3 % 50%; // units not allowed -// font: 3 % 12px; -// font: 3 % #111111; // invalid operand -// font: 3 % hello; -// font: 3 % "hello"; -// font: 3 % true; -// font: 3 % false; -// font: 3 % not-there(hello); -// font: 3 % un#{quo}te("hello"); -// font: 3 % (a, b, c); -// font: 3 % (a b c); - /* */ - /* percentage + whatever */ - font: 50% + 3; - font: 50% + 100%; -// font : 50% + 10px; // incompatible units -// font: 50% + #111111; // invalid operands - font: 50% + hello; - font: 50% + "hello"; - font: 50% + undefined(hello); - font: 50% + un#{quo}te("hello"); - font: 50% + (a, b, c); - font: 50% + (a b c); - /* percentage - whatever */ - font: 50% - 3; - font: 50% - 100%; -// font: 50% - 10px; // incompatible units - font: 50% - #111111; // invalid operands - font: 50% - hello; - font: 50% - "hello"; - font: 50% - undefined(hello); - font: 50% - un#{quo}te("hello"); - font: 50% - (a, b, c); - font: 50% - (a b c); - /* percentage * whatever */ - font: 50% * 3; -// font: 50% * 100%; // results in squared units -// font: 50% * 10px; // results in mixed units -// font: 50% * #111111; // invalid operands -// font: 50% * hello; -// font: 50% * "hello"; -// font: 50% * undefined(hello); -// font: 50% * un#{quo}te("hello"); -// font: 50% * (a, b, c); -// font: 50% * (a b c); - /* percentage / whatever */ - font: (50% / 3); - font: (50% / 100%); -// font: (50% / 10px); // incompatible units - font: (50% / #111111); // invalid operands - font: (50% / hello); - font: 50%/"hello"; - font: (50% / undefined(hello)); - font: 50% / un#{quo}te("hello"); - font: 50% / (a, b, c); - font: 50% / (a b c); - /* percentage % whatever */ - /* percentage / whatever */ - font: 50% % 3; -// font: 50% % 100%; // not allowed to mod by units -// font: 50% % 10px; -// font: 50% % #111111; // invalid operands -// font: 50% % hello; -// font: 50% % "hello"; -// font: 50% % undefined(hello); -// font: 50% % un#{quo}te("hello"); -// font: 50% % (a, b, c); -// font: 50% % (a b c); -// font: 20px % 6px; - font: type-of(3 + (a b c)); - blah: (20/#abc); - blah: type-of(3 + true); - blah: (3 + true); - blah: (true + 3); - blah: (true - 5); - -// blah: 20px % 6px; - -// blah: 20 % 6px; - // blah: 20px % 6hz; -// blee: rgba(4,4,4,.3) % rgba(1,1,1,.3); - blah: (#abc / #111); - foo: type-of((1 2 3) + (a b c)); - foo: (1 2 3) + (a b c); - foo: (2px + 3px)*4em/2px; - foo: 1cm*1in/1cm; -} -<===> output.css -div { - /* number + whatever */ - font: 5; - font: 53%; - font: 15px; - font: #141414; - font: 3hello; - font: "3hello"; - font: 3true; - font: 3false; - font: 3not-there(hello); - font: 3unquote("hello"); - font: 3a, b, c; - font: 3a b c; - /* number - whatever */ - font: 1; - font: -47%; - font: -9px; - font: 3-#111111; - font: 3-hello; - font: 3-"hello"; - font: 3-true; - font: 3-false; - font: 3-not-there(hello); - font: 3-unquote("hello"); - font: 3-a, b, c; - font: 3-a b c; - /* number * whatever */ - font: 6; - font: 150%; - font: 36px; - font: #333333; - /* number / whatever */ - font: 3 / 2; - font: 1.5; - font: 6; - font: 6; - font: 3/#111111; - font: 3/hello; - font: 3/"hello"; - font: 3/true; - font: 3/false; - font: 3/not-there(hello); - font: 3/unquote("hello"); - font: 3/a, b, c; - font: 3/a b c; - /* number % whatever */ - font: 1; - /* */ - /* percentage + whatever */ - font: 53%; - font: 150%; - font: 50%hello; - font: "50%hello"; - font: 50%undefined(hello); - font: 50%unquote("hello"); - font: 50%a, b, c; - font: 50%a b c; - /* percentage - whatever */ - font: 47%; - font: -50%; - font: 50%-#111111; - font: 50%-hello; - font: 50%-"hello"; - font: 50%-undefined(hello); - font: 50%-unquote("hello"); - font: 50%-a, b, c; - font: 50%-a b c; - /* percentage * whatever */ - font: 150%; - /* percentage / whatever */ - font: 16.6666666667%; - font: 0.5; - font: 50%/#111111; - font: 50%/hello; - font: 50%/"hello"; - font: 50%/undefined(hello); - font: 50%/unquote("hello"); - font: 50%/a, b, c; - font: 50%/a b c; - /* percentage % whatever */ - /* percentage / whatever */ - font: 2%; - font: string; - blah: 20/#abc; - blah: string; - blah: 3true; - blah: true3; - blah: true-5; - blah: #0a0b0c; - foo: string; - foo: 1 2 3a b c; - foo: 10em; - foo: 1in; -} - -<===> warning -DEPRECATION WARNING on line 12 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{3 + un}quo#{te("hello")}") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 25 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{3 - un}quo#{te("hello")}") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 55 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{3 / un}quo#{te("hello")}") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 80 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{50% + un}quo#{te("hello")}") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 91 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{50% - un}quo#{te("hello")}") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 113 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{50% / un}quo#{te("hello")}") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 6 of input.scss: -The operation `3 plus #111111` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 19 of input.scss: -The operation `3 minus #111111` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 32 of input.scss: -The operation `3 times #111111` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 49 of input.scss: -The operation `3 div #111111` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 87 of input.scss: -The operation `50% minus #111111` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 109 of input.scss: -The operation `50% div #111111` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 130 of input.scss: -The operation `20 div #abc` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 141 of input.scss: -The operation `#abc div #111` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions diff --git a/spec/libsass/color-names.hrx b/spec/libsass/color-names.hrx deleted file mode 100644 index 02baad7de5..0000000000 --- a/spec/libsass/color-names.hrx +++ /dev/null @@ -1,1006 +0,0 @@ -<===> options.yml ---- -:end_version: '3.5' - -<===> input.scss -colors { - AliceBlue: #F0F8FF + 0; - AntiqueWhite: #FAEBD7 + 0; - Aqua: #00FFFF + 0; - Aquamarine: #7FFFD4 + 0; - Azure: #F0FFFF + 0; - Beige: #F5F5DC + 0; - Bisque: #FFE4C4 + 0; - Black: #000000 + 0; - BlanchedAlmond: #FFEBCD + 0; - Blue: #0000FF + 0; - BlueViolet: #8A2BE2 + 0; - Brown: #A52A2A + 0; - BurlyWood: #DEB887 + 0; - CadetBlue: #5F9EA0 + 0; - Chartreuse: #7FFF00 + 0; - Chocolate: #D2691E + 0; - Coral: #FF7F50 + 0; - CornflowerBlue: #6495ED + 0; - Cornsilk: #FFF8DC + 0; - Crimson: #DC143C + 0; - Cyan: #00FFFF + 0; - DarkBlue: #00008B + 0; - DarkCyan: #008B8B + 0; - DarkGoldenRod: #B8860B + 0; - DarkGray: #A9A9A9 + 0; - DarkGreen: #006400 + 0; - DarkKhaki: #BDB76B + 0; - DarkMagenta: #8B008B + 0; - DarkOliveGreen: #556B2F + 0; - Darkorange: #FF8C00 + 0; - DarkOrchid: #9932CC + 0; - DarkRed: #8B0000 + 0; - DarkSalmon: #E9967A + 0; - DarkSeaGreen: #8FBC8F + 0; - DarkSlateBlue: #483D8B + 0; - DarkSlateGray: #2F4F4F + 0; - DarkTurquoise: #00CED1 + 0; - DarkViolet: #9400D3 + 0; - DeepPink: #FF1493 + 0; - DeepSkyBlue: #00BFFF + 0; - DimGray: #696969 + 0; - DodgerBlue: #1E90FF + 0; - FireBrick: #B22222 + 0; - FloralWhite: #FFFAF0 + 0; - ForestGreen: #228B22 + 0; - Fuchsia: #FF00FF + 0; - Gainsboro: #DCDCDC + 0; - GhostWhite: #F8F8FF + 0; - Gold: #FFD700 + 0; - GoldenRod: #DAA520 + 0; - Gray: #808080 + 0; - Green: #008000 + 0; - GreenYellow: #ADFF2F + 0; - HoneyDew: #F0FFF0 + 0; - HotPink: #FF69B4 + 0; - IndianRed: #CD5C5C + 0; - Indigo: #4B0082 + 0; - Ivory: #FFFFF0 + 0; - Khaki: #F0E68C + 0; - Lavender: #E6E6FA + 0; - LavenderBlush: #FFF0F5 + 0; - LawnGreen: #7CFC00 + 0; - LemonChiffon: #FFFACD + 0; - LightBlue: #ADD8E6 + 0; - LightCoral: #F08080 + 0; - LightCyan: #E0FFFF + 0; - LightGoldenRodYellow: #FAFAD2 + 0; - LightGray: #D3D3D3 + 0; - LightGreen: #90EE90 + 0; - LightPink: #FFB6C1 + 0; - LightSalmon: #FFA07A + 0; - LightSeaGreen: #20B2AA + 0; - LightSkyBlue: #87CEFA + 0; - LightSlateGray: #778899 + 0; - LightSteelBlue: #B0C4DE + 0; - LightYellow: #FFFFE0 + 0; - Lime: #00FF00 + 0; - LimeGreen: #32CD32 + 0; - Linen: #FAF0E6 + 0; - Magenta: #FF00FF + 0; - Maroon: #800000 + 0; - MediumAquaMarine: #66CDAA + 0; - MediumBlue: #0000CD + 0; - MediumOrchid: #BA55D3 + 0; - MediumPurple: #9370DB + 0; - MediumSeaGreen: #3CB371 + 0; - MediumSlateBlue: #7B68EE + 0; - MediumSpringGreen: #00FA9A + 0; - MediumTurquoise: #48D1CC + 0; - MediumVioletRed: #C71585 + 0; - MidnightBlue: #191970 + 0; - MintCream: #F5FFFA + 0; - MistyRose: #FFE4E1 + 0; - Moccasin: #FFE4B5 + 0; - NavajoWhite: #FFDEAD + 0; - Navy: #000080 + 0; - OldLace: #FDF5E6 + 0; - Olive: #808000 + 0; - OliveDrab: #6B8E23 + 0; - Orange: #FFA500 + 0; - OrangeRed: #FF4500 + 0; - Orchid: #DA70D6 + 0; - PaleGoldenRod: #EEE8AA + 0; - PaleGreen: #98FB98 + 0; - PaleTurquoise: #AFEEEE + 0; - PaleVioletRed: #DB7093 + 0; - PapayaWhip: #FFEFD5 + 0; - PeachPuff: #FFDAB9 + 0; - Peru: #CD853F + 0; - Pink: #FFC0CB + 0; - Plum: #DDA0DD + 0; - PowderBlue: #B0E0E6 + 0; - Purple: #800080 + 0; - Red: #FF0000 + 0; - RosyBrown: #BC8F8F + 0; - RoyalBlue: #4169E1 + 0; - SaddleBrown: #8B4513 + 0; - Salmon: #FA8072 + 0; - SandyBrown: #F4A460 + 0; - SeaGreen: #2E8B57 + 0; - SeaShell: #FFF5EE + 0; - Sienna: #A0522D + 0; - Silver: #C0C0C0 + 0; - SkyBlue: #87CEEB + 0; - SlateBlue: #6A5ACD + 0; - SlateGray: #708090 + 0; - Snow: #FFFAFA + 0; - SpringGreen: #00FF7F + 0; - SteelBlue: #4682B4 + 0; - Tan: #D2B48C + 0; - Teal: #008080 + 0; - Thistle: #D8BFD8 + 0; - Tomato: #FF6347 + 0; - Turquoise: #40E0D0 + 0; - Violet: #EE82EE + 0; - Wheat: #F5DEB3 + 0; - White: #FFFFFF + 0; - WhiteSmoke: #F5F5F5 + 0; - Yellow: #FFFF00 + 0; - YellowGreen: #9ACD32 + 0; - RebeccaPurple: #663399 + 0; - transparent: transparent + 0; -} - -<===> output.css -colors { - AliceBlue: aliceblue; - AntiqueWhite: antiquewhite; - Aqua: cyan; - Aquamarine: aquamarine; - Azure: azure; - Beige: beige; - Bisque: bisque; - Black: black; - BlanchedAlmond: blanchedalmond; - Blue: blue; - BlueViolet: blueviolet; - Brown: brown; - BurlyWood: burlywood; - CadetBlue: cadetblue; - Chartreuse: chartreuse; - Chocolate: chocolate; - Coral: coral; - CornflowerBlue: cornflowerblue; - Cornsilk: cornsilk; - Crimson: crimson; - Cyan: cyan; - DarkBlue: darkblue; - DarkCyan: darkcyan; - DarkGoldenRod: darkgoldenrod; - DarkGray: darkgray; - DarkGreen: darkgreen; - DarkKhaki: darkkhaki; - DarkMagenta: darkmagenta; - DarkOliveGreen: darkolivegreen; - Darkorange: darkorange; - DarkOrchid: darkorchid; - DarkRed: darkred; - DarkSalmon: darksalmon; - DarkSeaGreen: darkseagreen; - DarkSlateBlue: darkslateblue; - DarkSlateGray: darkslategray; - DarkTurquoise: darkturquoise; - DarkViolet: darkviolet; - DeepPink: deeppink; - DeepSkyBlue: deepskyblue; - DimGray: dimgray; - DodgerBlue: dodgerblue; - FireBrick: firebrick; - FloralWhite: floralwhite; - ForestGreen: forestgreen; - Fuchsia: magenta; - Gainsboro: gainsboro; - GhostWhite: ghostwhite; - Gold: gold; - GoldenRod: goldenrod; - Gray: gray; - Green: green; - GreenYellow: greenyellow; - HoneyDew: honeydew; - HotPink: hotpink; - IndianRed: indianred; - Indigo: indigo; - Ivory: ivory; - Khaki: khaki; - Lavender: lavender; - LavenderBlush: lavenderblush; - LawnGreen: lawngreen; - LemonChiffon: lemonchiffon; - LightBlue: lightblue; - LightCoral: lightcoral; - LightCyan: lightcyan; - LightGoldenRodYellow: lightgoldenrodyellow; - LightGray: lightgray; - LightGreen: lightgreen; - LightPink: lightpink; - LightSalmon: lightsalmon; - LightSeaGreen: lightseagreen; - LightSkyBlue: lightskyblue; - LightSlateGray: lightslategray; - LightSteelBlue: lightsteelblue; - LightYellow: lightyellow; - Lime: lime; - LimeGreen: limegreen; - Linen: linen; - Magenta: magenta; - Maroon: maroon; - MediumAquaMarine: mediumaquamarine; - MediumBlue: mediumblue; - MediumOrchid: mediumorchid; - MediumPurple: mediumpurple; - MediumSeaGreen: mediumseagreen; - MediumSlateBlue: mediumslateblue; - MediumSpringGreen: mediumspringgreen; - MediumTurquoise: mediumturquoise; - MediumVioletRed: mediumvioletred; - MidnightBlue: midnightblue; - MintCream: mintcream; - MistyRose: mistyrose; - Moccasin: moccasin; - NavajoWhite: navajowhite; - Navy: navy; - OldLace: oldlace; - Olive: olive; - OliveDrab: olivedrab; - Orange: orange; - OrangeRed: orangered; - Orchid: orchid; - PaleGoldenRod: palegoldenrod; - PaleGreen: palegreen; - PaleTurquoise: paleturquoise; - PaleVioletRed: palevioletred; - PapayaWhip: papayawhip; - PeachPuff: peachpuff; - Peru: peru; - Pink: pink; - Plum: plum; - PowderBlue: powderblue; - Purple: purple; - Red: red; - RosyBrown: rosybrown; - RoyalBlue: royalblue; - SaddleBrown: saddlebrown; - Salmon: salmon; - SandyBrown: sandybrown; - SeaGreen: seagreen; - SeaShell: seashell; - Sienna: sienna; - Silver: silver; - SkyBlue: skyblue; - SlateBlue: slateblue; - SlateGray: slategray; - Snow: snow; - SpringGreen: springgreen; - SteelBlue: steelblue; - Tan: tan; - Teal: teal; - Thistle: thistle; - Tomato: tomato; - Turquoise: turquoise; - Violet: violet; - Wheat: wheat; - White: white; - WhiteSmoke: whitesmoke; - Yellow: yellow; - YellowGreen: yellowgreen; - RebeccaPurple: rebeccapurple; - transparent: rgba(0, 0, 0, 0); -} - -<===> warning -DEPRECATION WARNING on line 2 of input.scss: -The operation `#F0F8FF plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 3 of input.scss: -The operation `#FAEBD7 plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 4 of input.scss: -The operation `#00FFFF plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 5 of input.scss: -The operation `#7FFFD4 plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 6 of input.scss: -The operation `#F0FFFF plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 7 of input.scss: -The operation `#F5F5DC plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 8 of input.scss: -The operation `#FFE4C4 plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 9 of input.scss: -The operation `#000000 plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 10 of input.scss: -The operation `#FFEBCD plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 11 of input.scss: -The operation `#0000FF plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 12 of input.scss: -The operation `#8A2BE2 plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 13 of input.scss: -The operation `#A52A2A plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 14 of input.scss: -The operation `#DEB887 plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 15 of input.scss: -The operation `#5F9EA0 plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 16 of input.scss: -The operation `#7FFF00 plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 17 of input.scss: -The operation `#D2691E plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 18 of input.scss: -The operation `#FF7F50 plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 19 of input.scss: -The operation `#6495ED plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 20 of input.scss: -The operation `#FFF8DC plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 21 of input.scss: -The operation `#DC143C plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 22 of input.scss: -The operation `#00FFFF plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 23 of input.scss: -The operation `#00008B plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 24 of input.scss: -The operation `#008B8B plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 25 of input.scss: -The operation `#B8860B plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 26 of input.scss: -The operation `#A9A9A9 plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 27 of input.scss: -The operation `#006400 plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 28 of input.scss: -The operation `#BDB76B plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 29 of input.scss: -The operation `#8B008B plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 30 of input.scss: -The operation `#556B2F plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 31 of input.scss: -The operation `#FF8C00 plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 32 of input.scss: -The operation `#9932CC plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 33 of input.scss: -The operation `#8B0000 plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 34 of input.scss: -The operation `#E9967A plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 35 of input.scss: -The operation `#8FBC8F plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 36 of input.scss: -The operation `#483D8B plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 37 of input.scss: -The operation `#2F4F4F plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 38 of input.scss: -The operation `#00CED1 plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 39 of input.scss: -The operation `#9400D3 plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 40 of input.scss: -The operation `#FF1493 plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 41 of input.scss: -The operation `#00BFFF plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 42 of input.scss: -The operation `#696969 plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 43 of input.scss: -The operation `#1E90FF plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 44 of input.scss: -The operation `#B22222 plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 45 of input.scss: -The operation `#FFFAF0 plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 46 of input.scss: -The operation `#228B22 plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 47 of input.scss: -The operation `#FF00FF plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 48 of input.scss: -The operation `#DCDCDC plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 49 of input.scss: -The operation `#F8F8FF plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 50 of input.scss: -The operation `#FFD700 plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 51 of input.scss: -The operation `#DAA520 plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 52 of input.scss: -The operation `#808080 plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 53 of input.scss: -The operation `#008000 plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 54 of input.scss: -The operation `#ADFF2F plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 55 of input.scss: -The operation `#F0FFF0 plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 56 of input.scss: -The operation `#FF69B4 plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 57 of input.scss: -The operation `#CD5C5C plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 58 of input.scss: -The operation `#4B0082 plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 59 of input.scss: -The operation `#FFFFF0 plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 60 of input.scss: -The operation `#F0E68C plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 61 of input.scss: -The operation `#E6E6FA plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 62 of input.scss: -The operation `#FFF0F5 plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 63 of input.scss: -The operation `#7CFC00 plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 64 of input.scss: -The operation `#FFFACD plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 65 of input.scss: -The operation `#ADD8E6 plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 66 of input.scss: -The operation `#F08080 plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 67 of input.scss: -The operation `#E0FFFF plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 68 of input.scss: -The operation `#FAFAD2 plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 69 of input.scss: -The operation `#D3D3D3 plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 70 of input.scss: -The operation `#90EE90 plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 71 of input.scss: -The operation `#FFB6C1 plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 72 of input.scss: -The operation `#FFA07A plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 73 of input.scss: -The operation `#20B2AA plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 74 of input.scss: -The operation `#87CEFA plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 75 of input.scss: -The operation `#778899 plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 76 of input.scss: -The operation `#B0C4DE plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 77 of input.scss: -The operation `#FFFFE0 plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 78 of input.scss: -The operation `#00FF00 plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 79 of input.scss: -The operation `#32CD32 plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 80 of input.scss: -The operation `#FAF0E6 plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 81 of input.scss: -The operation `#FF00FF plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 82 of input.scss: -The operation `#800000 plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 83 of input.scss: -The operation `#66CDAA plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 84 of input.scss: -The operation `#0000CD plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 85 of input.scss: -The operation `#BA55D3 plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 86 of input.scss: -The operation `#9370DB plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 87 of input.scss: -The operation `#3CB371 plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 88 of input.scss: -The operation `#7B68EE plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 89 of input.scss: -The operation `#00FA9A plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 90 of input.scss: -The operation `#48D1CC plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 91 of input.scss: -The operation `#C71585 plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 92 of input.scss: -The operation `#191970 plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 93 of input.scss: -The operation `#F5FFFA plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 94 of input.scss: -The operation `#FFE4E1 plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 95 of input.scss: -The operation `#FFE4B5 plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 96 of input.scss: -The operation `#FFDEAD plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 97 of input.scss: -The operation `#000080 plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 98 of input.scss: -The operation `#FDF5E6 plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 99 of input.scss: -The operation `#808000 plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 100 of input.scss: -The operation `#6B8E23 plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 101 of input.scss: -The operation `#FFA500 plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 102 of input.scss: -The operation `#FF4500 plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 103 of input.scss: -The operation `#DA70D6 plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 104 of input.scss: -The operation `#EEE8AA plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 105 of input.scss: -The operation `#98FB98 plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 106 of input.scss: -The operation `#AFEEEE plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 107 of input.scss: -The operation `#DB7093 plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 108 of input.scss: -The operation `#FFEFD5 plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 109 of input.scss: -The operation `#FFDAB9 plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 110 of input.scss: -The operation `#CD853F plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 111 of input.scss: -The operation `#FFC0CB plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 112 of input.scss: -The operation `#DDA0DD plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 113 of input.scss: -The operation `#B0E0E6 plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 114 of input.scss: -The operation `#800080 plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 115 of input.scss: -The operation `#FF0000 plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 116 of input.scss: -The operation `#BC8F8F plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 117 of input.scss: -The operation `#4169E1 plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 118 of input.scss: -The operation `#8B4513 plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 119 of input.scss: -The operation `#FA8072 plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 120 of input.scss: -The operation `#F4A460 plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 121 of input.scss: -The operation `#2E8B57 plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 122 of input.scss: -The operation `#FFF5EE plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 123 of input.scss: -The operation `#A0522D plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 124 of input.scss: -The operation `#C0C0C0 plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 125 of input.scss: -The operation `#87CEEB plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 126 of input.scss: -The operation `#6A5ACD plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 127 of input.scss: -The operation `#708090 plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 128 of input.scss: -The operation `#FFFAFA plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 129 of input.scss: -The operation `#00FF7F plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 130 of input.scss: -The operation `#4682B4 plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 131 of input.scss: -The operation `#D2B48C plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 132 of input.scss: -The operation `#008080 plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 133 of input.scss: -The operation `#D8BFD8 plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 134 of input.scss: -The operation `#FF6347 plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 135 of input.scss: -The operation `#40E0D0 plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 136 of input.scss: -The operation `#EE82EE plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 137 of input.scss: -The operation `#F5DEB3 plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 138 of input.scss: -The operation `#FFFFFF plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 139 of input.scss: -The operation `#F5F5F5 plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 140 of input.scss: -The operation `#FFFF00 plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 141 of input.scss: -The operation `#9ACD32 plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 142 of input.scss: -The operation `#663399 plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions - -DEPRECATION WARNING on line 143 of input.scss: -The operation `transparent plus 0` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions diff --git a/spec/libsass/inheritance.hrx b/spec/libsass/inheritance.hrx deleted file mode 100644 index 2a7d447574..0000000000 --- a/spec/libsass/inheritance.hrx +++ /dev/null @@ -1,148 +0,0 @@ -<===> options.yml ---- -:end_version: '3.5' -:warning_todo: -- libsass - -<===> input.scss -main content a box { - border: solid; -} - -supplemtal text b sidebar { - @extend box; - background: gray; -} - -/********/ - -mammal { - blood: warm; -} - -mammal.furry.quadruped { - fur: lots; - legs: 4; -} - -human { - @extend mammal; - says: "hello"; -} - -dog { - says: "woof"; - @extend mammal.quadruped; -} - -/********/ - -region.country { - inhabitant.mouse { - eats: cheddar; - } -} - -region.city { - inhabitant.mouse { - eats: camembert; - } -} - -region.country citizen { - @extend inhabitant; - ssn: 123 45 6789; -} - -region tax-payer { - @extend inhabitant; - rate: 17%; -} - -/********/ - -foo { - color: red; -} - -.a.bar { - @extend fo#{o}; - background: gray; -} - -/********/ - -foo { - color: red; -} - -hux, .bar.a { - @extend foo; - background: blue; -} -<===> output.css -main content a box, main content a supplemtal text b sidebar, supplemtal text b main content a sidebar { - border: solid; -} - -supplemtal text b sidebar { - background: gray; -} - -/********/ -mammal, human { - blood: warm; -} - -mammal.furry.quadruped, human.furry.quadruped, dog.furry { - fur: lots; - legs: 4; -} - -human { - says: "hello"; -} - -dog { - says: "woof"; -} - -/********/ -region.country inhabitant.mouse, region.country citizen.mouse, region.country tax-payer.mouse { - eats: cheddar; -} - -region.city inhabitant.mouse, region.city region.country citizen.mouse, region.country region.city citizen.mouse, region.city tax-payer.mouse { - eats: camembert; -} - -region.country citizen { - ssn: 123 45 6789; -} - -region tax-payer { - rate: 17%; -} - -/********/ -foo, .a.bar, hux { - color: red; -} - -.a.bar { - background: gray; -} - -/********/ -foo, .a.bar, hux { - color: red; -} - -hux, .bar.a { - background: blue; -} - -<===> warning -DEPRECATION WARNING on line 28 of input.scss: -Extending a compound selector, mammal.quadruped, is deprecated and will not be supported in a future release. -See http://bit.ly/ExtendCompound for details. diff --git a/spec/libsass/interpolated-function-call-4.0.hrx b/spec/libsass/interpolated-function-call-4.0.hrx index 4d42a5fc17..177edce4d6 100644 --- a/spec/libsass/interpolated-function-call-4.0.hrx +++ b/spec/libsass/interpolated-function-call-4.0.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: '4.0' :todo: - libsass diff --git a/spec/libsass/interpolated-function-call.hrx b/spec/libsass/interpolated-function-call.hrx deleted file mode 100644 index dc16d52509..0000000000 --- a/spec/libsass/interpolated-function-call.hrx +++ /dev/null @@ -1,25 +0,0 @@ -<===> options.yml ---- -:end_version: '3.5' -:warning_todo: -- libsass - -<===> input.scss -$f: foo; - -div { - color: #{$f}(a, 1+2, c); -} -<===> output.css -div { - color: fooa, 3, c; -} - -<===> warning -DEPRECATION WARNING on line 4 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{$f}#{a, 1 + 2, c}") - -You can use the sass-convert command to automatically fix most cases. diff --git a/spec/libsass/interpolated-urls-4.0.hrx b/spec/libsass/interpolated-urls-4.0.hrx index 6871b6a67e..33677411e6 100644 --- a/spec/libsass/interpolated-urls-4.0.hrx +++ b/spec/libsass/interpolated-urls-4.0.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: '4.0' :todo: - libsass diff --git a/spec/libsass/interpolated-urls.hrx b/spec/libsass/interpolated-urls.hrx deleted file mode 100644 index 1fe4662c2a..0000000000 --- a/spec/libsass/interpolated-urls.hrx +++ /dev/null @@ -1,48 +0,0 @@ -<===> options.yml ---- -:end_version: '3.5' -:warning_todo: -- libsass - -<===> input.scss -$base_url: "/static_loc/"; -div { - background-image: "url("#{$base_url}"img/beta.png)"; -} - -span { - background-image: url(#{$base_url}img/beta.png); -} - -fudge { - walnuts: blix"fludge"#{hey now}123; -} -<===> output.css -div { - background-image: "url("/static_loc/"img/beta.png)"; -} - -span { - background-image: url(/static_loc/img/beta.png); -} - -fudge { - walnuts: blix "fludge"hey now123; -} - -<===> warning -DEPRECATION WARNING on line 3 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote('"url("#{$base_url}"img/beta.png)"') - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 11 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{blix "fludge"}#{hey now}123") - -You can use the sass-convert command to automatically fix most cases. diff --git a/spec/libsass/propsets.hrx b/spec/libsass/propsets.hrx index a5c507aaf5..e13aa9cf78 100644 --- a/spec/libsass/propsets.hrx +++ b/spec/libsass/propsets.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: "3.7" :todo: - libsass diff --git a/spec/parser/interpolate/00_concatenation/unspaced-4.0.hrx b/spec/parser/interpolate/00_concatenation/unspaced-4.0.hrx index fafac04205..1b62d24ac5 100644 --- a/spec/parser/interpolate/00_concatenation/unspaced-4.0.hrx +++ b/spec/parser/interpolate/00_concatenation/unspaced-4.0.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: '4.0' :todo: - libsass diff --git a/spec/parser/interpolate/00_concatenation/unspaced.hrx b/spec/parser/interpolate/00_concatenation/unspaced.hrx deleted file mode 100644 index 8096feb4ff..0000000000 --- a/spec/parser/interpolate/00_concatenation/unspaced.hrx +++ /dev/null @@ -1,138 +0,0 @@ -<===> options.yml ---- -:end_version: '3.5' -:warning_todo: -- libsass - -<===> input.scss -$input: literal; -.result { - output: literal$input; - output: literal#{$input}; - output: literal#{literal}; - output: literal#{"literal"}; - output: $input$input; - output: $input#{$input}; - output: $input#{literal}; - output: $input#{"literal"}; - output: #{$input}literal; - output: #{$input}$input; - output: #{$input}#{$input}; - output: #{$input}#{literal}; - output: #{$input}#{"literal"}; - output: #{literal}literal; - output: #{literal}$input; - output: #{literal}#{$input}; - output: #{literal}#{literal}; - output: #{literal}#{"literal"}; - output: #{"literal"}literal; - output: #{"literal"}$input; - output: #{"literal"}#{$input}; - output: #{"literal"}#{literal}; - output: #{"literal"}#{"literal"}; - output: "literal#{$input}"; - output: "literal#{literal}"; - output: "literal#{"literal"}"; - output: "#{$input}literal"; - output: "#{$input}#{$input}"; - output: "#{$input}#{literal}"; - output: "#{$input}#{"literal"}"; - output: "#{literal}literal"; - output: "#{literal}#{$input}"; - output: "#{literal}#{literal}"; - output: "#{literal}#{"literal"}"; - output: "#{"literal"}literal"; - output: "#{"literal"}#{$input}"; - output: "#{"literal"}#{literal}"; - output: "#{"literal"}#{"literal"}"; -} -<===> output.css -.result { - output: literal literal; - output: literalliteral; - output: literalliteral; - output: literalliteral; - output: literal literal; - output: literalliteral; - output: literalliteral; - output: literalliteral; - output: literalliteral; - output: literalliteral; - output: literalliteral; - output: literalliteral; - output: literalliteral; - output: literalliteral; - output: literalliteral; - output: literalliteral; - output: literalliteral; - output: literalliteral; - output: literalliteral; - output: literalliteral; - output: literalliteral; - output: literalliteral; - output: literalliteral; - output: "literalliteral"; - output: "literalliteral"; - output: "literalliteral"; - output: "literalliteral"; - output: "literalliteral"; - output: "literalliteral"; - output: "literalliteral"; - output: "literalliteral"; - output: "literalliteral"; - output: "literalliteral"; - output: "literalliteral"; - output: "literalliteral"; - output: "literalliteral"; - output: "literalliteral"; - output: "literalliteral"; -} - -<===> warning -DEPRECATION WARNING on line 8 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{$input}#{$input}") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 9 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{$input}literal") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 10 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote('#{$input}"literal"') - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 12 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{$input}#{$input}") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 17 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("literal#{$input}") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 22 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote('"literal"#{$input}') - -You can use the sass-convert command to automatically fix most cases. diff --git a/spec/parser/interpolate/11_escaped_literal/01_inline.hrx b/spec/parser/interpolate/11_escaped_literal/01_inline.hrx index a77cf1d3a7..c73ded7066 100644 --- a/spec/parser/interpolate/11_escaped_literal/01_inline.hrx +++ b/spec/parser/interpolate/11_escaped_literal/01_inline.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: "3.7" :todo: - libsass diff --git a/spec/parser/interpolate/11_escaped_literal/02_variable.hrx b/spec/parser/interpolate/11_escaped_literal/02_variable.hrx index 88939597c0..648bc77a11 100644 --- a/spec/parser/interpolate/11_escaped_literal/02_variable.hrx +++ b/spec/parser/interpolate/11_escaped_literal/02_variable.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: "3.7" :todo: - libsass # sass/libsass#2700 diff --git a/spec/parser/interpolate/11_escaped_literal/03_inline_double.hrx b/spec/parser/interpolate/11_escaped_literal/03_inline_double.hrx index ab33ce312d..a0cabd67a7 100644 --- a/spec/parser/interpolate/11_escaped_literal/03_inline_double.hrx +++ b/spec/parser/interpolate/11_escaped_literal/03_inline_double.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: "3.7" :todo: - libsass # sass/libsass#2700 diff --git a/spec/parser/interpolate/11_escaped_literal/04_variable_double.hrx b/spec/parser/interpolate/11_escaped_literal/04_variable_double.hrx index 7fcff6e9b7..b17bb643d3 100644 --- a/spec/parser/interpolate/11_escaped_literal/04_variable_double.hrx +++ b/spec/parser/interpolate/11_escaped_literal/04_variable_double.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: "3.7" :todo: - libsass # sass/libsass#2700 diff --git a/spec/parser/interpolate/11_escaped_literal/05_variable_quoted_double.hrx b/spec/parser/interpolate/11_escaped_literal/05_variable_quoted_double.hrx index 2781d60341..722f23d242 100644 --- a/spec/parser/interpolate/11_escaped_literal/05_variable_quoted_double.hrx +++ b/spec/parser/interpolate/11_escaped_literal/05_variable_quoted_double.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: "3.7" :todo: - libsass # sass/libsass#2700 diff --git a/spec/parser/interpolate/12_escaped_double_quoted/06_escape_interpolation.hrx b/spec/parser/interpolate/12_escaped_double_quoted/06_escape_interpolation.hrx index 684cc11da5..08f240e208 100644 --- a/spec/parser/interpolate/12_escaped_double_quoted/06_escape_interpolation.hrx +++ b/spec/parser/interpolate/12_escaped_double_quoted/06_escape_interpolation.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: "3.7" :todo: - libsass diff --git a/spec/parser/interpolate/13_escaped_single_quoted/06_escape_interpolation.hrx b/spec/parser/interpolate/13_escaped_single_quoted/06_escape_interpolation.hrx index dd5a75c39b..e30ab6f34d 100644 --- a/spec/parser/interpolate/13_escaped_single_quoted/06_escape_interpolation.hrx +++ b/spec/parser/interpolate/13_escaped_single_quoted/06_escape_interpolation.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: "3.7" :todo: - libsass diff --git a/spec/parser/interpolate/14_escapes_literal_numbers/01_inline.hrx b/spec/parser/interpolate/14_escapes_literal_numbers/01_inline.hrx index 6d46849a2b..62e37cb05f 100644 --- a/spec/parser/interpolate/14_escapes_literal_numbers/01_inline.hrx +++ b/spec/parser/interpolate/14_escapes_literal_numbers/01_inline.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: "3.7" :todo: - libsass diff --git a/spec/parser/interpolate/14_escapes_literal_numbers/02_variable.hrx b/spec/parser/interpolate/14_escapes_literal_numbers/02_variable.hrx index 8d227975df..8e04be404f 100644 --- a/spec/parser/interpolate/14_escapes_literal_numbers/02_variable.hrx +++ b/spec/parser/interpolate/14_escapes_literal_numbers/02_variable.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: "3.7" :todo: - libsass diff --git a/spec/parser/interpolate/14_escapes_literal_numbers/03_inline_double.hrx b/spec/parser/interpolate/14_escapes_literal_numbers/03_inline_double.hrx index 1471ceb98a..3603cf9303 100644 --- a/spec/parser/interpolate/14_escapes_literal_numbers/03_inline_double.hrx +++ b/spec/parser/interpolate/14_escapes_literal_numbers/03_inline_double.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: "3.7" :todo: - libsass # sass/libsass#2700 diff --git a/spec/parser/interpolate/14_escapes_literal_numbers/04_variable_double.hrx b/spec/parser/interpolate/14_escapes_literal_numbers/04_variable_double.hrx index a3643af0cc..d37f08b545 100644 --- a/spec/parser/interpolate/14_escapes_literal_numbers/04_variable_double.hrx +++ b/spec/parser/interpolate/14_escapes_literal_numbers/04_variable_double.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: "3.7" :todo: - libsass # sass/libsass#2700 diff --git a/spec/parser/interpolate/14_escapes_literal_numbers/05_variable_quoted_double.hrx b/spec/parser/interpolate/14_escapes_literal_numbers/05_variable_quoted_double.hrx index 906705685c..5d867eb92a 100644 --- a/spec/parser/interpolate/14_escapes_literal_numbers/05_variable_quoted_double.hrx +++ b/spec/parser/interpolate/14_escapes_literal_numbers/05_variable_quoted_double.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: "3.7" :todo: - libsass diff --git a/spec/parser/interpolate/15_escapes_double_quoted_numbers/06_escape_interpolation.hrx b/spec/parser/interpolate/15_escapes_double_quoted_numbers/06_escape_interpolation.hrx index e647d5f759..a1a454af63 100644 --- a/spec/parser/interpolate/15_escapes_double_quoted_numbers/06_escape_interpolation.hrx +++ b/spec/parser/interpolate/15_escapes_double_quoted_numbers/06_escape_interpolation.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: "3.7" :todo: - libsass diff --git a/spec/parser/interpolate/16_escapes_single_quoted_numbers/06_escape_interpolation.hrx b/spec/parser/interpolate/16_escapes_single_quoted_numbers/06_escape_interpolation.hrx index d60da9e165..23cad97fbb 100644 --- a/spec/parser/interpolate/16_escapes_single_quoted_numbers/06_escape_interpolation.hrx +++ b/spec/parser/interpolate/16_escapes_single_quoted_numbers/06_escape_interpolation.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: "3.7" :todo: - libsass diff --git a/spec/parser/interpolate/17_escapes_literal_lowercase/01_inline.hrx b/spec/parser/interpolate/17_escapes_literal_lowercase/01_inline.hrx index d2acd1ab58..193ebc5748 100644 --- a/spec/parser/interpolate/17_escapes_literal_lowercase/01_inline.hrx +++ b/spec/parser/interpolate/17_escapes_literal_lowercase/01_inline.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: "3.7" :todo: - libsass diff --git a/spec/parser/interpolate/17_escapes_literal_lowercase/02_variable.hrx b/spec/parser/interpolate/17_escapes_literal_lowercase/02_variable.hrx index c44e959f62..3f6e7dcbe0 100644 --- a/spec/parser/interpolate/17_escapes_literal_lowercase/02_variable.hrx +++ b/spec/parser/interpolate/17_escapes_literal_lowercase/02_variable.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: "3.7" :todo: - libsass # sass/libsass#2700 diff --git a/spec/parser/interpolate/17_escapes_literal_lowercase/03_inline_double.hrx b/spec/parser/interpolate/17_escapes_literal_lowercase/03_inline_double.hrx index 10990b723e..68178d33b9 100644 --- a/spec/parser/interpolate/17_escapes_literal_lowercase/03_inline_double.hrx +++ b/spec/parser/interpolate/17_escapes_literal_lowercase/03_inline_double.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: "3.7" :todo: - libsass # sass/libsass#2700 diff --git a/spec/parser/interpolate/17_escapes_literal_lowercase/04_variable_double.hrx b/spec/parser/interpolate/17_escapes_literal_lowercase/04_variable_double.hrx index 79bfbebf09..07f0131b47 100644 --- a/spec/parser/interpolate/17_escapes_literal_lowercase/04_variable_double.hrx +++ b/spec/parser/interpolate/17_escapes_literal_lowercase/04_variable_double.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: "3.7" :todo: - libsass # sass/libsass#2700 diff --git a/spec/parser/interpolate/17_escapes_literal_lowercase/05_variable_quoted_double.hrx b/spec/parser/interpolate/17_escapes_literal_lowercase/05_variable_quoted_double.hrx index fc40fbaf20..a6bf1824ab 100644 --- a/spec/parser/interpolate/17_escapes_literal_lowercase/05_variable_quoted_double.hrx +++ b/spec/parser/interpolate/17_escapes_literal_lowercase/05_variable_quoted_double.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: "3.7" :todo: - libsass # sass/libsass#2700 diff --git a/spec/parser/interpolate/18_escapes_double_quoted_lowercase/06_escape_interpolation.hrx b/spec/parser/interpolate/18_escapes_double_quoted_lowercase/06_escape_interpolation.hrx index 87ac4f78fc..742bd19907 100644 --- a/spec/parser/interpolate/18_escapes_double_quoted_lowercase/06_escape_interpolation.hrx +++ b/spec/parser/interpolate/18_escapes_double_quoted_lowercase/06_escape_interpolation.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: "3.7" :todo: - libsass diff --git a/spec/parser/interpolate/19_escapes_single_quoted_lowercase/06_escape_interpolation.hrx b/spec/parser/interpolate/19_escapes_single_quoted_lowercase/06_escape_interpolation.hrx index 0e82fa20e9..ad84182fbe 100644 --- a/spec/parser/interpolate/19_escapes_single_quoted_lowercase/06_escape_interpolation.hrx +++ b/spec/parser/interpolate/19_escapes_single_quoted_lowercase/06_escape_interpolation.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: "3.7" :todo: - libsass diff --git a/spec/parser/interpolate/20_escapes_literal_uppercase/01_inline.hrx b/spec/parser/interpolate/20_escapes_literal_uppercase/01_inline.hrx index b7baa90bd4..a2d28cf186 100644 --- a/spec/parser/interpolate/20_escapes_literal_uppercase/01_inline.hrx +++ b/spec/parser/interpolate/20_escapes_literal_uppercase/01_inline.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: "3.7" :todo: - libsass diff --git a/spec/parser/interpolate/20_escapes_literal_uppercase/02_variable.hrx b/spec/parser/interpolate/20_escapes_literal_uppercase/02_variable.hrx index 7c16346f1e..a84c18fc7a 100644 --- a/spec/parser/interpolate/20_escapes_literal_uppercase/02_variable.hrx +++ b/spec/parser/interpolate/20_escapes_literal_uppercase/02_variable.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: "3.7" :todo: - libsass # sass/libsass#2700 diff --git a/spec/parser/interpolate/20_escapes_literal_uppercase/03_inline_double.hrx b/spec/parser/interpolate/20_escapes_literal_uppercase/03_inline_double.hrx index 14ded04e31..07294f799f 100644 --- a/spec/parser/interpolate/20_escapes_literal_uppercase/03_inline_double.hrx +++ b/spec/parser/interpolate/20_escapes_literal_uppercase/03_inline_double.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: "3.7" :todo: - libsass # sass/libsass#2700 diff --git a/spec/parser/interpolate/20_escapes_literal_uppercase/04_variable_double.hrx b/spec/parser/interpolate/20_escapes_literal_uppercase/04_variable_double.hrx index 8973c8478f..d03a848390 100644 --- a/spec/parser/interpolate/20_escapes_literal_uppercase/04_variable_double.hrx +++ b/spec/parser/interpolate/20_escapes_literal_uppercase/04_variable_double.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: "3.7" :todo: - libsass # sass/libsass#2700 diff --git a/spec/parser/interpolate/20_escapes_literal_uppercase/05_variable_quoted_double.hrx b/spec/parser/interpolate/20_escapes_literal_uppercase/05_variable_quoted_double.hrx index 998ad11171..5530674132 100644 --- a/spec/parser/interpolate/20_escapes_literal_uppercase/05_variable_quoted_double.hrx +++ b/spec/parser/interpolate/20_escapes_literal_uppercase/05_variable_quoted_double.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: "3.7" :todo: - libsass # sass/libsass#2700 diff --git a/spec/parser/interpolate/21_escapes_double_quoted_uppercase/06_escape_interpolation.hrx b/spec/parser/interpolate/21_escapes_double_quoted_uppercase/06_escape_interpolation.hrx index d46db93bbe..33d2370219 100644 --- a/spec/parser/interpolate/21_escapes_double_quoted_uppercase/06_escape_interpolation.hrx +++ b/spec/parser/interpolate/21_escapes_double_quoted_uppercase/06_escape_interpolation.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: "3.7" :todo: - libsass diff --git a/spec/parser/interpolate/22_escapes_single_quoted_uppercase/06_escape_interpolation.hrx b/spec/parser/interpolate/22_escapes_single_quoted_uppercase/06_escape_interpolation.hrx index a1b0dfa9b3..df1caa2f3f 100644 --- a/spec/parser/interpolate/22_escapes_single_quoted_uppercase/06_escape_interpolation.hrx +++ b/spec/parser/interpolate/22_escapes_single_quoted_uppercase/06_escape_interpolation.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: "3.7" :todo: - libsass diff --git a/spec/parser/interpolate/23_escapes_literal_specials/01_inline.hrx b/spec/parser/interpolate/23_escapes_literal_specials/01_inline.hrx index 11bd9894d9..38f3fbacab 100644 --- a/spec/parser/interpolate/23_escapes_literal_specials/01_inline.hrx +++ b/spec/parser/interpolate/23_escapes_literal_specials/01_inline.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: "3.7" :todo: - libsass diff --git a/spec/parser/interpolate/23_escapes_literal_specials/02_variable.hrx b/spec/parser/interpolate/23_escapes_literal_specials/02_variable.hrx index 650f2e049b..e8efc2760a 100644 --- a/spec/parser/interpolate/23_escapes_literal_specials/02_variable.hrx +++ b/spec/parser/interpolate/23_escapes_literal_specials/02_variable.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: "3.7" :todo: - libsass # sass/libsass#2700 diff --git a/spec/parser/interpolate/23_escapes_literal_specials/03_inline_double.hrx b/spec/parser/interpolate/23_escapes_literal_specials/03_inline_double.hrx index 4b8339c717..3d0ebbbf02 100644 --- a/spec/parser/interpolate/23_escapes_literal_specials/03_inline_double.hrx +++ b/spec/parser/interpolate/23_escapes_literal_specials/03_inline_double.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: "3.7" :todo: - libsass # sass/libsass#2700 diff --git a/spec/parser/interpolate/23_escapes_literal_specials/04_variable_double.hrx b/spec/parser/interpolate/23_escapes_literal_specials/04_variable_double.hrx index d40501efde..6eceee0168 100644 --- a/spec/parser/interpolate/23_escapes_literal_specials/04_variable_double.hrx +++ b/spec/parser/interpolate/23_escapes_literal_specials/04_variable_double.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: "3.7" :todo: - libsass # sass/libsass#2700 diff --git a/spec/parser/interpolate/23_escapes_literal_specials/05_variable_quoted_double.hrx b/spec/parser/interpolate/23_escapes_literal_specials/05_variable_quoted_double.hrx index 13c50bf83d..5bfac4878c 100644 --- a/spec/parser/interpolate/23_escapes_literal_specials/05_variable_quoted_double.hrx +++ b/spec/parser/interpolate/23_escapes_literal_specials/05_variable_quoted_double.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: "3.7" :todo: - libsass # sass/libsass#2700 diff --git a/spec/parser/interpolate/24_escapes_double_quoted_specials/06_escape_interpolation/options.yml b/spec/parser/interpolate/24_escapes_double_quoted_specials/06_escape_interpolation/options.yml index e0bbd72ad8..32792ae3c6 100644 --- a/spec/parser/interpolate/24_escapes_double_quoted_specials/06_escape_interpolation/options.yml +++ b/spec/parser/interpolate/24_escapes_double_quoted_specials/06_escape_interpolation/options.yml @@ -1,4 +1,3 @@ --- -:start_version: "3.7" :todo: - libsass diff --git a/spec/parser/interpolate/24_escapes_double_quoted_specials/todo_05_variable_quoted_double-4.0/options.yml b/spec/parser/interpolate/24_escapes_double_quoted_specials/todo_05_variable_quoted_double-4.0/options.yml deleted file mode 100644 index b896747153..0000000000 --- a/spec/parser/interpolate/24_escapes_double_quoted_specials/todo_05_variable_quoted_double-4.0/options.yml +++ /dev/null @@ -1,2 +0,0 @@ ---- -:start_version: '4.0' diff --git a/spec/parser/interpolate/24_escapes_double_quoted_specials/todo_05_variable_quoted_double/input.scss b/spec/parser/interpolate/24_escapes_double_quoted_specials/todo_05_variable_quoted_double/input.scss deleted file mode 100644 index d95ca95ec6..0000000000 --- a/spec/parser/interpolate/24_escapes_double_quoted_specials/todo_05_variable_quoted_double/input.scss +++ /dev/null @@ -1,13 +0,0 @@ -$input: "\0_\a_\A"; -.result { - dquoted: "#{#{$input}}"; - dquoted: "#{"[#{$input}]"}"; - dquoted: "#{"#{$input}"}"; - dquoted: "#{'#{$input}'}"; - dquoted: "#{"['#{$input}']"}"; - squoted: '#{#{$input}}'; - squoted: '#{"[#{$input}]"}'; - squoted: '#{"#{$input}"}'; - squoted: '#{'#{$input}'}'; - squoted: '#{"['#{$input}']"}'; -} diff --git a/spec/parser/interpolate/24_escapes_double_quoted_specials/todo_05_variable_quoted_double/options.yml b/spec/parser/interpolate/24_escapes_double_quoted_specials/todo_05_variable_quoted_double/options.yml deleted file mode 100644 index 61e71b888b..0000000000 --- a/spec/parser/interpolate/24_escapes_double_quoted_specials/todo_05_variable_quoted_double/options.yml +++ /dev/null @@ -1,4 +0,0 @@ ---- -:todo: -- libsass -:end_version: '3.5' diff --git a/spec/parser/interpolate/24_escapes_double_quoted_specials/todo_05_variable_quoted_double/output.css b/spec/parser/interpolate/24_escapes_double_quoted_specials/todo_05_variable_quoted_double/output.css deleted file mode 100644 index 567abbb494..0000000000 --- a/spec/parser/interpolate/24_escapes_double_quoted_specials/todo_05_variable_quoted_double/output.css +++ /dev/null @@ -1,13 +0,0 @@ -@charset "UTF-8"; -.result { - dquoted: "�_ _ "; - dquoted: "[�_\a_\a]"; - dquoted: "�_\a_\a"; - dquoted: "�_\a_\a"; - dquoted: "['�_\a_\a']"; - squoted: "�_ _ "; - squoted: "[�_\a_\a]"; - squoted: "�_\a_\a"; - squoted: "�_\a_\a"; - squoted: "['�_\a_\a']"; -} diff --git a/spec/parser/interpolate/24_escapes_double_quoted_specials/todo_05_variable_quoted_double/todo.txt b/spec/parser/interpolate/24_escapes_double_quoted_specials/todo_05_variable_quoted_double/todo.txt deleted file mode 100644 index 10a39094a1..0000000000 --- a/spec/parser/interpolate/24_escapes_double_quoted_specials/todo_05_variable_quoted_double/todo.txt +++ /dev/null @@ -1,2 +0,0 @@ -Fails on shared build (gcc/clang) -Looks like some issue with "\r" \ No newline at end of file diff --git a/spec/parser/interpolate/25_escapes_single_quoted_specials/06_escape_interpolation/options.yml b/spec/parser/interpolate/25_escapes_single_quoted_specials/06_escape_interpolation/options.yml index e0bbd72ad8..32792ae3c6 100644 --- a/spec/parser/interpolate/25_escapes_single_quoted_specials/06_escape_interpolation/options.yml +++ b/spec/parser/interpolate/25_escapes_single_quoted_specials/06_escape_interpolation/options.yml @@ -1,4 +1,3 @@ --- -:start_version: "3.7" :todo: - libsass diff --git a/spec/parser/interpolate/25_escapes_single_quoted_specials/todo_05_variable_quoted_double-4.0/options.yml b/spec/parser/interpolate/25_escapes_single_quoted_specials/todo_05_variable_quoted_double-4.0/options.yml deleted file mode 100644 index b896747153..0000000000 --- a/spec/parser/interpolate/25_escapes_single_quoted_specials/todo_05_variable_quoted_double-4.0/options.yml +++ /dev/null @@ -1,2 +0,0 @@ ---- -:start_version: '4.0' diff --git a/spec/parser/interpolate/25_escapes_single_quoted_specials/todo_05_variable_quoted_double/input.scss b/spec/parser/interpolate/25_escapes_single_quoted_specials/todo_05_variable_quoted_double/input.scss deleted file mode 100644 index 2f33438c5a..0000000000 --- a/spec/parser/interpolate/25_escapes_single_quoted_specials/todo_05_variable_quoted_double/input.scss +++ /dev/null @@ -1,13 +0,0 @@ -$input: '\0_\a_\A'; -.result { - dquoted: "#{#{$input}}"; - dquoted: "#{"[#{$input}]"}"; - dquoted: "#{"#{$input}"}"; - dquoted: "#{'#{$input}'}"; - dquoted: "#{"['#{$input}']"}"; - squoted: '#{#{$input}}'; - squoted: '#{"[#{$input}]"}'; - squoted: '#{"#{$input}"}'; - squoted: '#{'#{$input}'}'; - squoted: '#{"['#{$input}']"}'; -} diff --git a/spec/parser/interpolate/25_escapes_single_quoted_specials/todo_05_variable_quoted_double/options.yml b/spec/parser/interpolate/25_escapes_single_quoted_specials/todo_05_variable_quoted_double/options.yml deleted file mode 100644 index 61e71b888b..0000000000 --- a/spec/parser/interpolate/25_escapes_single_quoted_specials/todo_05_variable_quoted_double/options.yml +++ /dev/null @@ -1,4 +0,0 @@ ---- -:todo: -- libsass -:end_version: '3.5' diff --git a/spec/parser/interpolate/25_escapes_single_quoted_specials/todo_05_variable_quoted_double/output.css b/spec/parser/interpolate/25_escapes_single_quoted_specials/todo_05_variable_quoted_double/output.css deleted file mode 100644 index 567abbb494..0000000000 --- a/spec/parser/interpolate/25_escapes_single_quoted_specials/todo_05_variable_quoted_double/output.css +++ /dev/null @@ -1,13 +0,0 @@ -@charset "UTF-8"; -.result { - dquoted: "�_ _ "; - dquoted: "[�_\a_\a]"; - dquoted: "�_\a_\a"; - dquoted: "�_\a_\a"; - dquoted: "['�_\a_\a']"; - squoted: "�_ _ "; - squoted: "[�_\a_\a]"; - squoted: "�_\a_\a"; - squoted: "�_\a_\a"; - squoted: "['�_\a_\a']"; -} diff --git a/spec/parser/interpolate/25_escapes_single_quoted_specials/todo_05_variable_quoted_double/todo.txt b/spec/parser/interpolate/25_escapes_single_quoted_specials/todo_05_variable_quoted_double/todo.txt deleted file mode 100644 index 10a39094a1..0000000000 --- a/spec/parser/interpolate/25_escapes_single_quoted_specials/todo_05_variable_quoted_double/todo.txt +++ /dev/null @@ -1,2 +0,0 @@ -Fails on shared build (gcc/clang) -Looks like some issue with "\r" \ No newline at end of file diff --git a/spec/parser/interpolate/29_binary_operation/06_escape_interpolation-4.0.hrx b/spec/parser/interpolate/29_binary_operation/06_escape_interpolation-4.0.hrx index 8b8a0fd54a..2b5d381729 100644 --- a/spec/parser/interpolate/29_binary_operation/06_escape_interpolation-4.0.hrx +++ b/spec/parser/interpolate/29_binary_operation/06_escape_interpolation-4.0.hrx @@ -2,7 +2,6 @@ --- :warning_todo: - libsass -:start_version: '4.0' <===> input.scss $input: "foo#{'ba' + 'r'}baz"; diff --git a/spec/parser/interpolate/29_binary_operation/06_escape_interpolation.hrx b/spec/parser/interpolate/29_binary_operation/06_escape_interpolation.hrx deleted file mode 100644 index e11c018fea..0000000000 --- a/spec/parser/interpolate/29_binary_operation/06_escape_interpolation.hrx +++ /dev/null @@ -1,20 +0,0 @@ -<===> options.yml ---- -:end_version: '3.5' - -<===> input.scss -$input: "foo#{'ba' + 'r'}baz"; -.result { - output: "[\#{"foo#{'ba' + 'r'}baz"}]"; - output: "\#{"foo#{'ba' + 'r'}baz"}"; - output: '\#{"foo#{'ba' + 'r'}baz"}'; - output: "['\#{"foo#{'ba' + 'r'}baz"}']"; -} - -<===> output.css -.result { - output: "[#{" foobarbaz "}]"; - output: "#{" foobarbaz "}"; - output: '#{"foobarbaz"}'; - output: "['#{" foobarbaz "}']"; -} diff --git a/spec/parser/interpolate/30_base_test/06_escape_interpolation-4.0.hrx b/spec/parser/interpolate/30_base_test/06_escape_interpolation-4.0.hrx index 8b8a0fd54a..2b5d381729 100644 --- a/spec/parser/interpolate/30_base_test/06_escape_interpolation-4.0.hrx +++ b/spec/parser/interpolate/30_base_test/06_escape_interpolation-4.0.hrx @@ -2,7 +2,6 @@ --- :warning_todo: - libsass -:start_version: '4.0' <===> input.scss $input: "foo#{'ba' + 'r'}baz"; diff --git a/spec/parser/interpolate/30_base_test/06_escape_interpolation.hrx b/spec/parser/interpolate/30_base_test/06_escape_interpolation.hrx deleted file mode 100644 index e11c018fea..0000000000 --- a/spec/parser/interpolate/30_base_test/06_escape_interpolation.hrx +++ /dev/null @@ -1,20 +0,0 @@ -<===> options.yml ---- -:end_version: '3.5' - -<===> input.scss -$input: "foo#{'ba' + 'r'}baz"; -.result { - output: "[\#{"foo#{'ba' + 'r'}baz"}]"; - output: "\#{"foo#{'ba' + 'r'}baz"}"; - output: '\#{"foo#{'ba' + 'r'}baz"}'; - output: "['\#{"foo#{'ba' + 'r'}baz"}']"; -} - -<===> output.css -.result { - output: "[#{" foobarbaz "}]"; - output: "#{" foobarbaz "}"; - output: '#{"foobarbaz"}'; - output: "['#{" foobarbaz "}']"; -} diff --git a/spec/parser/operations/addition/dimensions/pairs-4.0.hrx b/spec/parser/operations/addition/dimensions/pairs-4.0.hrx index 625f7632bd..e98ce64c7a 100644 --- a/spec/parser/operations/addition/dimensions/pairs-4.0.hrx +++ b/spec/parser/operations/addition/dimensions/pairs-4.0.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: '4.0' :todo: - libsass diff --git a/spec/parser/operations/addition/dimensions/pairs.hrx b/spec/parser/operations/addition/dimensions/pairs.hrx deleted file mode 100644 index bc9223769a..0000000000 --- a/spec/parser/operations/addition/dimensions/pairs.hrx +++ /dev/null @@ -1,534 +0,0 @@ -<===> options.yml ---- -:end_version: '3.5' -:warning_todo: -- libsass - -<===> input.scss -foo { - test-1: 10+10; - test-2: 10 +10; - test-3: 10+ 10; - test-4: 10 + 10; - test-5: 10+10px; - test-6: 10 +10px; - test-7: 10+ 10px; - test-8: 10 + 10px; - test-9: 10+#{10}px; - test-10: 10 +#{10}px; - test-11: 10+ #{10}px; - test-12: 10 + #{10}px; - test-13: 10+1#{0}px; - test-14: 10 +1#{0}px; - test-15: 10+ 1#{0}px; - test-16: 10 + 1#{0}px; - test-17: 10+10#{px}; - test-18: 10 +10#{px}; - test-19: 10+ 10#{px}; - test-20: 10 + 10#{px}; - test-21: 10+10#{p}x; - test-22: 10 +10#{p}x; - test-23: 10+ 10#{p}x; - test-24: 10 + 10#{p}x; - test-25: 10px+10px; - test-26: 10px +10px; - test-27: 10px+ 10px; - test-28: 10px + 10px; - test-29: 10px+#{10}px; - test-30: 10px +#{10}px; - test-31: 10px+ #{10}px; - test-32: 10px + #{10}px; - test-33: 10px+1#{0}px; - test-34: 10px +1#{0}px; - test-35: 10px+ 1#{0}px; - test-36: 10px + 1#{0}px; - test-37: 10px+10#{px}; - test-38: 10px +10#{px}; - test-39: 10px+ 10#{px}; - test-40: 10px + 10#{px}; - test-41: 10px+10#{p}x; - test-42: 10px +10#{p}x; - test-43: 10px+ 10#{p}x; - test-44: 10px + 10#{p}x; - test-45: #{10}px+#{10}px; - test-46: #{10}px +#{10}px; - test-47: #{10}px+ #{10}px; - test-48: #{10}px + #{10}px; - test-49: #{10}px+1#{0}px; - test-50: #{10}px +1#{0}px; - test-51: #{10}px+ 1#{0}px; - test-52: #{10}px + 1#{0}px; - test-53: #{10}px+10#{px}; - test-54: #{10}px +10#{px}; - test-55: #{10}px+ 10#{px}; - test-56: #{10}px + 10#{px}; - test-57: #{10}px+10#{p}x; - test-58: #{10}px +10#{p}x; - test-59: #{10}px+ 10#{p}x; - test-60: #{10}px + 10#{p}x; - test-61: 1#{0}px+1#{0}px; - test-62: 1#{0}px +1#{0}px; - test-63: 1#{0}px+ 1#{0}px; - test-64: 1#{0}px + 1#{0}px; - test-65: 1#{0}px+10#{px}; - test-66: 1#{0}px +10#{px}; - test-67: 1#{0}px+ 10#{px}; - test-68: 1#{0}px + 10#{px}; - test-69: 1#{0}px+10#{p}x; - test-70: 1#{0}px +10#{p}x; - test-71: 1#{0}px+ 10#{p}x; - test-72: 1#{0}px + 10#{p}x; - test-73: 10#{px}+10#{px}; - test-74: 10#{px} +10#{px}; - test-75: 10#{px}+ 10#{px}; - test-76: 10#{px} + 10#{px}; - test-77: 10#{px}+10#{p}x; - test-78: 10#{px} +10#{p}x; - test-79: 10#{px}+ 10#{p}x; - test-80: 10#{px} + 10#{p}x; - test-81: 10#{p}x+10#{p}x; - test-82: 10#{p}x +10#{p}x; - test-83: 10#{p}x+ 10#{p}x; - test-84: 10#{p}x + 10#{p}x; -} - -<===> output.css -foo { - test-1: 20; - test-2: 10 +10; - test-3: 20; - test-4: 20; - test-5: 20px; - test-6: 10 +10px; - test-7: 20px; - test-8: 20px; - test-9: 10+10px; - test-10: 10 +10px; - test-11: 10+ 10px; - test-12: 10 + 10px; - test-13: 110px; - test-14: 110px; - test-15: 110px; - test-16: 110px; - test-17: 20px; - test-18: 20px; - test-19: 20px; - test-20: 20px; - test-21: 20px; - test-22: 20px; - test-23: 20px; - test-24: 20px; - test-25: 20px; - test-26: 10px +10px; - test-27: 20px; - test-28: 20px; - test-29: 10px+10px; - test-30: 10px +10px; - test-31: 10px+ 10px; - test-32: 10px + 10px; - test-33: 11px0px; - test-34: 11px0px; - test-35: 11px0px; - test-36: 11px0px; - test-37: 20pxpx; - test-38: 20pxpx; - test-39: 20pxpx; - test-40: 20pxpx; - test-41: 20pxpx; - test-42: 20pxpx; - test-43: 20pxpx; - test-44: 20pxpx; - test-45: 10px+10px; - test-46: 10px +10px; - test-47: 10px+ 10px; - test-48: 10px + 10px; - test-49: 10px10px; - test-50: 10px10px; - test-51: 10px10px; - test-52: 10px10px; - test-53: 10px10px; - test-54: 10px10px; - test-55: 10px10px; - test-56: 10px10px; - test-57: 10px10px; - test-58: 10px10px; - test-59: 10px10px; - test-60: 10px10px; - test-61: 10px10px; - test-62: 10px10px; - test-63: 10px10px; - test-64: 10px10px; - test-65: 10px10px; - test-66: 10px10px; - test-67: 10px10px; - test-68: 10px10px; - test-69: 10px10px; - test-70: 10px10px; - test-71: 10px10px; - test-72: 10px10px; - test-73: 10px+10px; - test-74: 10px +10px; - test-75: 10px+ 10px; - test-76: 10px + 10px; - test-77: 10px+10px; - test-78: 10px +10px; - test-79: 10px+ 10px; - test-80: 10px + 10px; - test-81: 10px10px; - test-82: 10px10px; - test-83: 10px10px; - test-84: 10px10px; -} - -<===> warning -DEPRECATION WARNING on line 10 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10+10px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 11 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 +10px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 12 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10+ 10px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 13 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 + 10px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 14 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 + 1}0px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 15 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 + 1}0px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 16 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 + 1}0px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 17 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 + 1}0px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 18 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 + 10}px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 19 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 + 10}px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 20 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 + 10}px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 21 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 + 10}px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 22 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 + 10}px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 23 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 + 10}px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 24 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 + 10}px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 25 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 + 10}px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 30 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10px+10px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 31 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10px +10px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 32 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10px+ 10px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 33 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10px + 10px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 34 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10px + 1}0px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 35 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10px + 1}0px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 36 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10px + 1}0px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 37 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10px + 1}0px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 38 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10px + 10}px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 39 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10px + 10}px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 40 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10px + 10}px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 41 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10px + 10}px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 42 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10px + 10}px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 43 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10px + 10}px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 44 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10px + 10}px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 45 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10px + 10}px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 46 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10px+10px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 47 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10px +10px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 48 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10px+ 10px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 49 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10px + 10px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 74 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10px+10px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 75 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10px +10px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 76 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10px+ 10px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 77 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10px + 10px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 78 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10px+10px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 79 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10px +10px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 80 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10px+ 10px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 81 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10px + 10px") - -You can use the sass-convert command to automatically fix most cases. diff --git a/spec/parser/operations/addition/numbers/pairs-4.0.hrx b/spec/parser/operations/addition/numbers/pairs-4.0.hrx index 32dce5e084..8b72bf4f7b 100644 --- a/spec/parser/operations/addition/numbers/pairs-4.0.hrx +++ b/spec/parser/operations/addition/numbers/pairs-4.0.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: '4.0' :todo: - libsass diff --git a/spec/parser/operations/addition/numbers/pairs.hrx b/spec/parser/operations/addition/numbers/pairs.hrx deleted file mode 100644 index 29859afa4a..0000000000 --- a/spec/parser/operations/addition/numbers/pairs.hrx +++ /dev/null @@ -1,382 +0,0 @@ -<===> options.yml ---- -:end_version: '3.5' -:warning_todo: -- libsass - -<===> input.scss -foo { - test-1: 10+10; - test-2: 10 +10; - test-3: 10+ 10; - test-4: 10 + 10; - test-5: 10+#{10}; - test-6: 10 +#{10}; - test-7: 10+ #{10}; - test-8: 10 + #{10}; - test-9: 10+1#{0}; - test-10: 10 +1#{0}; - test-11: 10+ 1#{0}; - test-12: 10 + 1#{0}; - test-13: 10+#{1}0; - test-14: 10 +#{1}0; - test-15: 10+ #{1}0; - test-16: 10 + #{1}0; - test-17: #{10}+#{10}; - test-18: #{10} +#{10}; - test-19: #{10}+ #{10}; - test-20: #{10} + #{10}; - test-21: #{10}+1#{0}; - test-22: #{10} +1#{0}; - test-23: #{10}+ 1#{0}; - test-24: #{10} + 1#{0}; - test-25: #{10}+#{1}0; - test-26: #{10} +#{1}0; - test-27: #{10}+ #{1}0; - test-28: #{10} + #{1}0; - test-29: 1#{0}+1#{0}; - test-30: 1#{0} +1#{0}; - test-31: 1#{0}+ 1#{0}; - test-32: 1#{0} + 1#{0}; - test-33: 1#{0}+#{1}0; - test-34: 1#{0} +#{1}0; - test-35: 1#{0}+ #{1}0; - test-36: 1#{0} + #{1}0; - test-37: #{1}0+#{1}0; - test-38: #{1}0 +#{1}0; - test-39: #{1}0+ #{1}0; - test-40: #{1}0 + #{1}0; -} - -<===> output.css -foo { - test-1: 20; - test-2: 10 +10; - test-3: 20; - test-4: 20; - test-5: 10+10; - test-6: 10 +10; - test-7: 10+ 10; - test-8: 10 + 10; - test-9: 110; - test-10: 110; - test-11: 110; - test-12: 110; - test-13: 10+10; - test-14: 10 +10; - test-15: 10+ 10; - test-16: 10 + 10; - test-17: 10+10; - test-18: 10 +10; - test-19: 10+ 10; - test-20: 10 + 10; - test-21: 10+10; - test-22: 10 +10; - test-23: 10+ 10; - test-24: 10 + 10; - test-25: 10+10; - test-26: 10 +10; - test-27: 10+ 10; - test-28: 10 + 10; - test-29: 10+10; - test-30: 10 +10; - test-31: 10+ 10; - test-32: 10 + 10; - test-33: 10+10; - test-34: 10 +10; - test-35: 10+ 10; - test-36: 10 + 10; - test-37: 10+10; - test-38: 10 +10; - test-39: 10+ 10; - test-40: 10 + 10; -} - -<===> warning -DEPRECATION WARNING on line 6 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10+10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 7 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 +10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 8 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10+ 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 9 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 + 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 10 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 + 1}0") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 11 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 + 1}0") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 12 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 + 1}0") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 13 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 + 1}0") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 14 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10+10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 15 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 +10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 16 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10+ 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 17 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 + 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 18 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10+10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 19 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 +10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 20 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10+ 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 21 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 + 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 22 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10+10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 23 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 +10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 24 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10+ 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 25 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 + 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 26 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10+10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 27 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 +10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 28 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10+ 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 29 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 + 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 30 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10+10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 31 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 +10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 32 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10+ 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 33 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 + 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 34 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10+10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 35 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 +10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 36 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10+ 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 37 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 + 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 38 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10+10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 39 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 +10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 40 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10+ 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 41 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 + 10") - -You can use the sass-convert command to automatically fix most cases. diff --git a/spec/parser/operations/addition/strings/pairs-4.0.hrx b/spec/parser/operations/addition/strings/pairs-4.0.hrx index c2146a2639..84413f1e57 100644 --- a/spec/parser/operations/addition/strings/pairs-4.0.hrx +++ b/spec/parser/operations/addition/strings/pairs-4.0.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: '4.0' :todo: - libsass diff --git a/spec/parser/operations/addition/strings/pairs.hrx b/spec/parser/operations/addition/strings/pairs.hrx deleted file mode 100644 index bc2d911df0..0000000000 --- a/spec/parser/operations/addition/strings/pairs.hrx +++ /dev/null @@ -1,518 +0,0 @@ -<===> options.yml ---- -:end_version: '3.5' -:warning_todo: -- libsass - -<===> input.scss -foo { - test-1: literal+literal; - test-2: literal +literal; - test-3: literal+ literal; - test-4: literal + literal; - test-5: literal+"quoted"; - test-6: literal +"quoted"; - test-7: literal+ "quoted"; - test-8: literal + "quoted"; - test-9: literal+#{interpolant}; - test-10: literal +#{interpolant}; - test-11: literal+ #{interpolant}; - test-12: literal + #{interpolant}; - test-13: literal+lschema_#{ritlp}; - test-14: literal +lschema_#{ritlp}; - test-15: literal+ lschema_#{ritlp}; - test-16: literal + lschema_#{ritlp}; - test-17: literal+#{litlp}_rschema; - test-18: literal +#{litlp}_rschema; - test-19: literal+ #{litlp}_rschema; - test-20: literal + #{litlp}_rschema; - test-21: "quoted"+"quoted"; - test-22: "quoted" +"quoted"; - test-23: "quoted"+ "quoted"; - test-24: "quoted" + "quoted"; - test-25: "quoted"+#{interpolant}; - test-26: "quoted" +#{interpolant}; - test-27: "quoted"+ #{interpolant}; - test-28: "quoted" + #{interpolant}; - test-29: "quoted"+lschema_#{ritlp}; - test-30: "quoted" +lschema_#{ritlp}; - test-31: "quoted"+ lschema_#{ritlp}; - test-32: "quoted" + lschema_#{ritlp}; - test-33: "quoted"+#{litlp}_rschema; - test-34: "quoted" +#{litlp}_rschema; - test-35: "quoted"+ #{litlp}_rschema; - test-36: "quoted" + #{litlp}_rschema; - test-37: #{interpolant}+#{interpolant}; - test-38: #{interpolant} +#{interpolant}; - test-39: #{interpolant}+ #{interpolant}; - test-40: #{interpolant} + #{interpolant}; - test-41: #{interpolant}+lschema_#{ritlp}; - test-42: #{interpolant} +lschema_#{ritlp}; - test-43: #{interpolant}+ lschema_#{ritlp}; - test-44: #{interpolant} + lschema_#{ritlp}; - test-45: #{interpolant}+#{litlp}_rschema; - test-46: #{interpolant} +#{litlp}_rschema; - test-47: #{interpolant}+ #{litlp}_rschema; - test-48: #{interpolant} + #{litlp}_rschema; - test-49: lschema_#{ritlp}+lschema_#{ritlp}; - test-50: lschema_#{ritlp} +lschema_#{ritlp}; - test-51: lschema_#{ritlp}+ lschema_#{ritlp}; - test-52: lschema_#{ritlp} + lschema_#{ritlp}; - test-53: lschema_#{ritlp}+#{litlp}_rschema; - test-54: lschema_#{ritlp} +#{litlp}_rschema; - test-55: lschema_#{ritlp}+ #{litlp}_rschema; - test-56: lschema_#{ritlp} + #{litlp}_rschema; - test-57: #{litlp}_rschema+#{litlp}_rschema; - test-58: #{litlp}_rschema +#{litlp}_rschema; - test-59: #{litlp}_rschema+ #{litlp}_rschema; - test-60: #{litlp}_rschema + #{litlp}_rschema; -} - -<===> output.css -foo { - test-1: literalliteral; - test-2: literalliteral; - test-3: literalliteral; - test-4: literalliteral; - test-5: literalquoted; - test-6: literalquoted; - test-7: literalquoted; - test-8: literalquoted; - test-9: literal+interpolant; - test-10: literal +interpolant; - test-11: literal+ interpolant; - test-12: literal + interpolant; - test-13: literallschema_ritlp; - test-14: literallschema_ritlp; - test-15: literallschema_ritlp; - test-16: literallschema_ritlp; - test-17: literal+litlp_rschema; - test-18: literal +litlp_rschema; - test-19: literal+ litlp_rschema; - test-20: literal + litlp_rschema; - test-21: "quotedquoted"; - test-22: "quotedquoted"; - test-23: "quotedquoted"; - test-24: "quotedquoted"; - test-25: "quoted"+interpolant; - test-26: "quoted" +interpolant; - test-27: "quoted"+ interpolant; - test-28: "quoted" + interpolant; - test-29: "quotedlschema_"ritlp; - test-30: "quotedlschema_"ritlp; - test-31: "quotedlschema_"ritlp; - test-32: "quotedlschema_"ritlp; - test-33: "quoted"+litlp_rschema; - test-34: "quoted" +litlp_rschema; - test-35: "quoted"+ litlp_rschema; - test-36: "quoted" + litlp_rschema; - test-37: interpolant+interpolant; - test-38: interpolant +interpolant; - test-39: interpolant+ interpolant; - test-40: interpolant + interpolant; - test-41: interpolant+lschema_ritlp; - test-42: interpolant +lschema_ritlp; - test-43: interpolant+ lschema_ritlp; - test-44: interpolant + lschema_ritlp; - test-45: interpolant+litlp_rschema; - test-46: interpolant +litlp_rschema; - test-47: interpolant+ litlp_rschema; - test-48: interpolant + litlp_rschema; - test-49: lschema_ritlp+lschema_ritlp; - test-50: lschema_ritlp +lschema_ritlp; - test-51: lschema_ritlp+ lschema_ritlp; - test-52: lschema_ritlp + lschema_ritlp; - test-53: lschema_ritlp+litlp_rschema; - test-54: lschema_ritlp +litlp_rschema; - test-55: lschema_ritlp+ litlp_rschema; - test-56: lschema_ritlp + litlp_rschema; - test-57: litlp_rschema+litlp_rschema; - test-58: litlp_rschema +litlp_rschema; - test-59: litlp_rschema+ litlp_rschema; - test-60: litlp_rschema + litlp_rschema; -} - -<===> warning -DEPRECATION WARNING on line 10 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("literal+interpolant") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 11 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("literal +interpolant") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 12 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("literal+ interpolant") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 13 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("literal + interpolant") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 14 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{literal + lschema_}ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 15 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{literal + lschema_}ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 16 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{literal + lschema_}ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 17 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{literal + lschema_}ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 18 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("literal+litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 19 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("literal +litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 20 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("literal+ litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 21 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("literal + litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 26 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote('"quoted"+interpolant') - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 27 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote('"quoted" +interpolant') - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 28 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote('"quoted"+ interpolant') - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 29 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote('"quoted" + interpolant') - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 30 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{"quoted" + lschema_}ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 31 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{"quoted" + lschema_}ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 32 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{"quoted" + lschema_}ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 33 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{"quoted" + lschema_}ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 34 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote('"quoted"+litlp_rschema') - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 35 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote('"quoted" +litlp_rschema') - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 36 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote('"quoted"+ litlp_rschema') - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 37 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote('"quoted" + litlp_rschema') - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 38 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant+interpolant") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 39 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant +interpolant") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 40 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant+ interpolant") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 41 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant + interpolant") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 42 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant+lschema_ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 43 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant +lschema_ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 44 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant+ lschema_ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 45 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant + lschema_ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 46 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant+litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 47 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant +litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 48 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant+ litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 49 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant + litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 50 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("lschema_ritlp+lschema_ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 51 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("lschema_ritlp +lschema_ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 52 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("lschema_ritlp+ lschema_ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 53 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("lschema_ritlp + lschema_ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 54 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("lschema_ritlp+litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 55 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("lschema_ritlp +litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 56 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("lschema_ritlp+ litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 57 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("lschema_ritlp + litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 58 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("litlp_rschema+litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 59 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("litlp_rschema +litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 60 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("litlp_rschema+ litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 61 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("litlp_rschema + litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. diff --git a/spec/parser/operations/division/dimensions/pairs-4.0.hrx b/spec/parser/operations/division/dimensions/pairs-4.0.hrx index 82e9c6ab27..405a386702 100644 --- a/spec/parser/operations/division/dimensions/pairs-4.0.hrx +++ b/spec/parser/operations/division/dimensions/pairs-4.0.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: '4.0' :todo: - libsass diff --git a/spec/parser/operations/division/dimensions/pairs.hrx b/spec/parser/operations/division/dimensions/pairs.hrx deleted file mode 100644 index 767a35904c..0000000000 --- a/spec/parser/operations/division/dimensions/pairs.hrx +++ /dev/null @@ -1,374 +0,0 @@ -<===> options.yml ---- -:end_version: '3.5' -:warning_todo: -- libsass - -<===> input.scss -foo { - test-1: 10/10; - test-2: 10 /10; - test-3: 10/ 10; - test-4: 10 / 10; - test-5: 10/10px; - test-6: 10 /10px; - test-7: 10/ 10px; - test-8: 10 / 10px; - test-9: 10/#{10}px; - test-10: 10 /#{10}px; - test-11: 10/ #{10}px; - test-12: 10 / #{10}px; - test-13: 10/1#{0}px; - test-14: 10 /1#{0}px; - test-15: 10/ 1#{0}px; - test-16: 10 / 1#{0}px; - test-17: 10/10#{px}; - test-18: 10 /10#{px}; - test-19: 10/ 10#{px}; - test-20: 10 / 10#{px}; - test-21: 10/10#{p}x; - test-22: 10 /10#{p}x; - test-23: 10/ 10#{p}x; - test-24: 10 / 10#{p}x; - test-25: 10px/10px; - test-26: 10px /10px; - test-27: 10px/ 10px; - test-28: 10px / 10px; - test-29: 10px/#{10}px; - test-30: 10px /#{10}px; - test-31: 10px/ #{10}px; - test-32: 10px / #{10}px; - test-33: 10px/1#{0}px; - test-34: 10px /1#{0}px; - test-35: 10px/ 1#{0}px; - test-36: 10px / 1#{0}px; - test-37: 10px/10#{px}; - test-38: 10px /10#{px}; - test-39: 10px/ 10#{px}; - test-40: 10px / 10#{px}; - test-41: 10px/10#{p}x; - test-42: 10px /10#{p}x; - test-43: 10px/ 10#{p}x; - test-44: 10px / 10#{p}x; - test-45: #{10}px/#{10}px; - test-46: #{10}px /#{10}px; - test-47: #{10}px/ #{10}px; - test-48: #{10}px / #{10}px; - test-49: #{10}px/1#{0}px; - test-50: #{10}px /1#{0}px; - test-51: #{10}px/ 1#{0}px; - test-52: #{10}px / 1#{0}px; - test-53: #{10}px/10#{px}; - test-54: #{10}px /10#{px}; - test-55: #{10}px/ 10#{px}; - test-56: #{10}px / 10#{px}; - test-57: #{10}px/10#{p}x; - test-58: #{10}px /10#{p}x; - test-59: #{10}px/ 10#{p}x; - test-60: #{10}px / 10#{p}x; - test-61: 1#{0}px/1#{0}px; - test-62: 1#{0}px /1#{0}px; - test-63: 1#{0}px/ 1#{0}px; - test-64: 1#{0}px / 1#{0}px; - test-65: 1#{0}px/10#{px}; - test-66: 1#{0}px /10#{px}; - test-67: 1#{0}px/ 10#{px}; - test-68: 1#{0}px / 10#{px}; - test-69: 1#{0}px/10#{p}x; - test-70: 1#{0}px /10#{p}x; - test-71: 1#{0}px/ 10#{p}x; - test-72: 1#{0}px / 10#{p}x; - test-73: 10#{px}/10#{px}; - test-74: 10#{px} /10#{px}; - test-75: 10#{px}/ 10#{px}; - test-76: 10#{px} / 10#{px}; - test-77: 10#{px}/10#{p}x; - test-78: 10#{px} /10#{p}x; - test-79: 10#{px}/ 10#{p}x; - test-80: 10#{px} / 10#{p}x; - test-81: 10#{p}x/10#{p}x; - test-82: 10#{p}x /10#{p}x; - test-83: 10#{p}x/ 10#{p}x; - test-84: 10#{p}x / 10#{p}x; -} - -<===> output.css -foo { - test-1: 10/10; - test-2: 10 /10; - test-3: 10/ 10; - test-4: 10 / 10; - test-5: 10/10px; - test-6: 10 /10px; - test-7: 10/ 10px; - test-8: 10 / 10px; - test-9: 10/10px; - test-10: 10 /10px; - test-11: 10/ 10px; - test-12: 10 / 10px; - test-13: 10/10px; - test-14: 10/10px; - test-15: 10/10px; - test-16: 10/10px; - test-17: 10/10px; - test-18: 10/10px; - test-19: 10/10px; - test-20: 10/10px; - test-21: 10/10px; - test-22: 10/10px; - test-23: 10/10px; - test-24: 10/10px; - test-25: 10px/10px; - test-26: 10px /10px; - test-27: 10px/ 10px; - test-28: 10px / 10px; - test-29: 10px/10px; - test-30: 10px /10px; - test-31: 10px/ 10px; - test-32: 10px / 10px; - test-33: 10px/10px; - test-34: 10px/10px; - test-35: 10px/10px; - test-36: 10px/10px; - test-37: 10px/10px; - test-38: 10px/10px; - test-39: 10px/10px; - test-40: 10px/10px; - test-41: 10px/10px; - test-42: 10px/10px; - test-43: 10px/10px; - test-44: 10px/10px; - test-45: 10px/10px; - test-46: 10px /10px; - test-47: 10px/ 10px; - test-48: 10px / 10px; - test-49: 10px/10px; - test-50: 10px/10px; - test-51: 10px/10px; - test-52: 10px/10px; - test-53: 10px/10px; - test-54: 10px/10px; - test-55: 10px/10px; - test-56: 10px/10px; - test-57: 10px/10px; - test-58: 10px/10px; - test-59: 10px/10px; - test-60: 10px/10px; - test-61: 10px/10px; - test-62: 10px/10px; - test-63: 10px/10px; - test-64: 10px/10px; - test-65: 10px/10px; - test-66: 10px/10px; - test-67: 10px/10px; - test-68: 10px/10px; - test-69: 10px/10px; - test-70: 10px/10px; - test-71: 10px/10px; - test-72: 10px/10px; - test-73: 10px/10px; - test-74: 10px /10px; - test-75: 10px/ 10px; - test-76: 10px / 10px; - test-77: 10px/10px; - test-78: 10px /10px; - test-79: 10px/ 10px; - test-80: 10px / 10px; - test-81: 10px/10px; - test-82: 10px/10px; - test-83: 10px/10px; - test-84: 10px/10px; -} - -<===> warning -DEPRECATION WARNING on line 14 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 / 1}0px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 15 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 / 1}0px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 16 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 / 1}0px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 17 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 / 1}0px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 18 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 / 10}px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 19 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 / 10}px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 20 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 / 10}px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 21 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 / 10}px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 22 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 / 10}px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 23 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 / 10}px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 24 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 / 10}px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 25 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 / 10}px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 34 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10px / 1}0px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 35 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10px / 1}0px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 36 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10px / 1}0px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 37 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10px / 1}0px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 38 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10px / 10}px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 39 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10px / 10}px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 40 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10px / 10}px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 41 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10px / 10}px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 42 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10px / 10}px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 43 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10px / 10}px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 44 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10px / 10}px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 45 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10px / 10}px") - -You can use the sass-convert command to automatically fix most cases. diff --git a/spec/parser/operations/division/mixed/pairs-4.0.hrx b/spec/parser/operations/division/mixed/pairs-4.0.hrx index f03dfbef16..6289c14d3f 100644 --- a/spec/parser/operations/division/mixed/pairs-4.0.hrx +++ b/spec/parser/operations/division/mixed/pairs-4.0.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: '4.0' :todo: - libsass diff --git a/spec/parser/operations/division/mixed/pairs.hrx b/spec/parser/operations/division/mixed/pairs.hrx deleted file mode 100644 index 6579a08a37..0000000000 --- a/spec/parser/operations/division/mixed/pairs.hrx +++ /dev/null @@ -1,131 +0,0 @@ -<===> options.yml ---- -:end_version: '3.5' - -<===> input.scss -foo { - test-1: 10/10; - test-2: 10 /10; - test-3: 10/ 10; - test-4: 10 / 10; - test-5: 10/10%; - test-6: 10 /10%; - test-7: 10/ 10%; - test-8: 10 / 10%; - test-9: 10/10px; - test-10: 10 /10px; - test-11: 10/ 10px; - test-12: 10 / 10px; - test-13: 10/#AAA; - test-14: 10 /#AAA; - test-15: 10/ #AAA; - test-16: 10 / #AAA; - test-17: 10/#{itpl}; - test-18: 10 /#{itpl}; - test-19: 10/ #{itpl}; - test-20: 10 / #{itpl}; - test-21: 10%/10%; - test-22: 10% /10%; - test-23: 10%/ 10%; - test-24: 10% / 10%; - test-25: 10%/10px; - test-26: 10% /10px; - test-27: 10%/ 10px; - test-28: 10% / 10px; - test-29: 10%/#AAA; - test-30: 10% /#AAA; - test-31: 10%/ #AAA; - test-32: 10% / #AAA; - test-33: 10%/#{itpl}; - test-34: 10% /#{itpl}; - test-35: 10%/ #{itpl}; - test-36: 10% / #{itpl}; - test-37: 10px/10px; - test-38: 10px /10px; - test-39: 10px/ 10px; - test-40: 10px / 10px; - test-41: 10px/#AAA; - test-42: 10px /#AAA; - test-43: 10px/ #AAA; - test-44: 10px / #AAA; - test-45: 10px/#{itpl}; - test-46: 10px /#{itpl}; - test-47: 10px/ #{itpl}; - test-48: 10px / #{itpl}; - test-49: #AAA/#AAA; - test-50: #AAA /#AAA; - test-51: #AAA/ #AAA; - test-52: #AAA / #AAA; - test-53: #AAA/#{itpl}; - test-54: #AAA /#{itpl}; - test-55: #AAA/ #{itpl}; - test-56: #AAA / #{itpl}; - test-57: #{itpl}/#{itpl}; - test-58: #{itpl} /#{itpl}; - test-59: #{itpl}/ #{itpl}; - test-60: #{itpl} / #{itpl}; -} - -<===> output.css -foo { - test-1: 10/10; - test-2: 10 /10; - test-3: 10/ 10; - test-4: 10 / 10; - test-5: 10/10%; - test-6: 10 /10%; - test-7: 10/ 10%; - test-8: 10 / 10%; - test-9: 10/10px; - test-10: 10 /10px; - test-11: 10/ 10px; - test-12: 10 / 10px; - test-13: 10/#AAA; - test-14: 10 /#AAA; - test-15: 10/ #AAA; - test-16: 10 / #AAA; - test-17: 10/itpl; - test-18: 10 /itpl; - test-19: 10/ itpl; - test-20: 10 / itpl; - test-21: 10%/10%; - test-22: 10% /10%; - test-23: 10%/ 10%; - test-24: 10% / 10%; - test-25: 10%/10px; - test-26: 10% /10px; - test-27: 10%/ 10px; - test-28: 10% / 10px; - test-29: 10%/#AAA; - test-30: 10% /#AAA; - test-31: 10%/ #AAA; - test-32: 10% / #AAA; - test-33: 10%/itpl; - test-34: 10% /itpl; - test-35: 10%/ itpl; - test-36: 10% / itpl; - test-37: 10px/10px; - test-38: 10px /10px; - test-39: 10px/ 10px; - test-40: 10px / 10px; - test-41: 10px/#AAA; - test-42: 10px /#AAA; - test-43: 10px/ #AAA; - test-44: 10px / #AAA; - test-45: 10px/itpl; - test-46: 10px /itpl; - test-47: 10px/ itpl; - test-48: 10px / itpl; - test-49: #AAA/#AAA; - test-50: #AAA /#AAA; - test-51: #AAA/ #AAA; - test-52: #AAA / #AAA; - test-53: #AAA/itpl; - test-54: #AAA /itpl; - test-55: #AAA/ itpl; - test-56: #AAA / itpl; - test-57: itpl/itpl; - test-58: itpl /itpl; - test-59: itpl/ itpl; - test-60: itpl / itpl; -} diff --git a/spec/parser/operations/division/numbers/pairs-4.0.hrx b/spec/parser/operations/division/numbers/pairs-4.0.hrx index 68d95ebb1b..5753f48cfb 100644 --- a/spec/parser/operations/division/numbers/pairs-4.0.hrx +++ b/spec/parser/operations/division/numbers/pairs-4.0.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: '4.0' :todo: - libsass diff --git a/spec/parser/operations/division/numbers/pairs.hrx b/spec/parser/operations/division/numbers/pairs.hrx deleted file mode 100644 index b371431894..0000000000 --- a/spec/parser/operations/division/numbers/pairs.hrx +++ /dev/null @@ -1,126 +0,0 @@ -<===> options.yml ---- -:end_version: '3.5' -:warning_todo: -- libsass - -<===> input.scss -foo { - test-1: 10/10; - test-2: 10 /10; - test-3: 10/ 10; - test-4: 10 / 10; - test-5: 10/#{10}; - test-6: 10 /#{10}; - test-7: 10/ #{10}; - test-8: 10 / #{10}; - test-9: 10/1#{0}; - test-10: 10 /1#{0}; - test-11: 10/ 1#{0}; - test-12: 10 / 1#{0}; - test-13: 10/#{1}0; - test-14: 10 /#{1}0; - test-15: 10/ #{1}0; - test-16: 10 / #{1}0; - test-17: #{10}/#{10}; - test-18: #{10} /#{10}; - test-19: #{10}/ #{10}; - test-20: #{10} / #{10}; - test-21: #{10}/1#{0}; - test-22: #{10} /1#{0}; - test-23: #{10}/ 1#{0}; - test-24: #{10} / 1#{0}; - test-25: #{10}/#{1}0; - test-26: #{10} /#{1}0; - test-27: #{10}/ #{1}0; - test-28: #{10} / #{1}0; - test-29: 1#{0}/1#{0}; - test-30: 1#{0} /1#{0}; - test-31: 1#{0}/ 1#{0}; - test-32: 1#{0} / 1#{0}; - test-33: 1#{0}/#{1}0; - test-34: 1#{0} /#{1}0; - test-35: 1#{0}/ #{1}0; - test-36: 1#{0} / #{1}0; - test-37: #{1}0/#{1}0; - test-38: #{1}0 /#{1}0; - test-39: #{1}0/ #{1}0; - test-40: #{1}0 / #{1}0; -} - -<===> output.css -foo { - test-1: 10/10; - test-2: 10 /10; - test-3: 10/ 10; - test-4: 10 / 10; - test-5: 10/10; - test-6: 10 /10; - test-7: 10/ 10; - test-8: 10 / 10; - test-9: 10/10; - test-10: 10/10; - test-11: 10/10; - test-12: 10/10; - test-13: 10/10; - test-14: 10 /10; - test-15: 10/ 10; - test-16: 10 / 10; - test-17: 10/10; - test-18: 10 /10; - test-19: 10/ 10; - test-20: 10 / 10; - test-21: 10/10; - test-22: 10 /10; - test-23: 10/ 10; - test-24: 10 / 10; - test-25: 10/10; - test-26: 10 /10; - test-27: 10/ 10; - test-28: 10 / 10; - test-29: 10/10; - test-30: 10 /10; - test-31: 10/ 10; - test-32: 10 / 10; - test-33: 10/10; - test-34: 10 /10; - test-35: 10/ 10; - test-36: 10 / 10; - test-37: 10/10; - test-38: 10 /10; - test-39: 10/ 10; - test-40: 10 / 10; -} - -<===> warning -DEPRECATION WARNING on line 10 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 / 1}0") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 11 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 / 1}0") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 12 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 / 1}0") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 13 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 / 1}0") - -You can use the sass-convert command to automatically fix most cases. diff --git a/spec/parser/operations/division/strings/pairs-4.0.hrx b/spec/parser/operations/division/strings/pairs-4.0.hrx index 5d7dee5762..889ce8f208 100644 --- a/spec/parser/operations/division/strings/pairs-4.0.hrx +++ b/spec/parser/operations/division/strings/pairs-4.0.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: '4.0' :todo: - libsass diff --git a/spec/parser/operations/division/strings/pairs.hrx b/spec/parser/operations/division/strings/pairs.hrx deleted file mode 100644 index 1e7c6d98d3..0000000000 --- a/spec/parser/operations/division/strings/pairs.hrx +++ /dev/null @@ -1,198 +0,0 @@ -<===> options.yml ---- -:end_version: '3.5' -:warning_todo: -- libsass - -<===> input.scss -foo { - test-1: literal/literal; - test-2: literal /literal; - test-3: literal/ literal; - test-4: literal / literal; - test-5: literal/"quoted"; - test-6: literal /"quoted"; - test-7: literal/ "quoted"; - test-8: literal / "quoted"; - test-9: literal/#{interpolant}; - test-10: literal /#{interpolant}; - test-11: literal/ #{interpolant}; - test-12: literal / #{interpolant}; - test-13: literal/lschema_#{ritlp}; - test-14: literal /lschema_#{ritlp}; - test-15: literal/ lschema_#{ritlp}; - test-16: literal / lschema_#{ritlp}; - test-17: literal/#{litlp}_rschema; - test-18: literal /#{litlp}_rschema; - test-19: literal/ #{litlp}_rschema; - test-20: literal / #{litlp}_rschema; - test-21: "quoted"/"quoted"; - test-22: "quoted" /"quoted"; - test-23: "quoted"/ "quoted"; - test-24: "quoted" / "quoted"; - test-25: "quoted"/#{interpolant}; - test-26: "quoted" /#{interpolant}; - test-27: "quoted"/ #{interpolant}; - test-28: "quoted" / #{interpolant}; - test-29: "quoted"/lschema_#{ritlp}; - test-30: "quoted" /lschema_#{ritlp}; - test-31: "quoted"/ lschema_#{ritlp}; - test-32: "quoted" / lschema_#{ritlp}; - test-33: "quoted"/#{litlp}_rschema; - test-34: "quoted" /#{litlp}_rschema; - test-35: "quoted"/ #{litlp}_rschema; - test-36: "quoted" / #{litlp}_rschema; - test-37: #{interpolant}/#{interpolant}; - test-38: #{interpolant} /#{interpolant}; - test-39: #{interpolant}/ #{interpolant}; - test-40: #{interpolant} / #{interpolant}; - test-41: #{interpolant}/lschema_#{ritlp}; - test-42: #{interpolant} /lschema_#{ritlp}; - test-43: #{interpolant}/ lschema_#{ritlp}; - test-44: #{interpolant} / lschema_#{ritlp}; - test-45: #{interpolant}/#{litlp}_rschema; - test-46: #{interpolant} /#{litlp}_rschema; - test-47: #{interpolant}/ #{litlp}_rschema; - test-48: #{interpolant} / #{litlp}_rschema; - test-49: lschema_#{ritlp}/lschema_#{ritlp}; - test-50: lschema_#{ritlp} /lschema_#{ritlp}; - test-51: lschema_#{ritlp}/ lschema_#{ritlp}; - test-52: lschema_#{ritlp} / lschema_#{ritlp}; - test-53: lschema_#{ritlp}/#{litlp}_rschema; - test-54: lschema_#{ritlp} /#{litlp}_rschema; - test-55: lschema_#{ritlp}/ #{litlp}_rschema; - test-56: lschema_#{ritlp} / #{litlp}_rschema; - test-57: #{litlp}_rschema/#{litlp}_rschema; - test-58: #{litlp}_rschema /#{litlp}_rschema; - test-59: #{litlp}_rschema/ #{litlp}_rschema; - test-60: #{litlp}_rschema / #{litlp}_rschema; -} - -<===> output.css -foo { - test-1: literal/literal; - test-2: literal /literal; - test-3: literal/ literal; - test-4: literal / literal; - test-5: literal/"quoted"; - test-6: literal /"quoted"; - test-7: literal/ "quoted"; - test-8: literal / "quoted"; - test-9: literal/interpolant; - test-10: literal /interpolant; - test-11: literal/ interpolant; - test-12: literal / interpolant; - test-13: literal/lschema_ritlp; - test-14: literal/lschema_ritlp; - test-15: literal/lschema_ritlp; - test-16: literal/lschema_ritlp; - test-17: literal/litlp_rschema; - test-18: literal /litlp_rschema; - test-19: literal/ litlp_rschema; - test-20: literal / litlp_rschema; - test-21: "quoted"/"quoted"; - test-22: "quoted" /"quoted"; - test-23: "quoted"/ "quoted"; - test-24: "quoted" / "quoted"; - test-25: "quoted"/interpolant; - test-26: "quoted" /interpolant; - test-27: "quoted"/ interpolant; - test-28: "quoted" / interpolant; - test-29: "quoted"/lschema_ritlp; - test-30: "quoted"/lschema_ritlp; - test-31: "quoted"/lschema_ritlp; - test-32: "quoted"/lschema_ritlp; - test-33: "quoted"/litlp_rschema; - test-34: "quoted" /litlp_rschema; - test-35: "quoted"/ litlp_rschema; - test-36: "quoted" / litlp_rschema; - test-37: interpolant/interpolant; - test-38: interpolant /interpolant; - test-39: interpolant/ interpolant; - test-40: interpolant / interpolant; - test-41: interpolant/lschema_ritlp; - test-42: interpolant /lschema_ritlp; - test-43: interpolant/ lschema_ritlp; - test-44: interpolant / lschema_ritlp; - test-45: interpolant/litlp_rschema; - test-46: interpolant /litlp_rschema; - test-47: interpolant/ litlp_rschema; - test-48: interpolant / litlp_rschema; - test-49: lschema_ritlp/lschema_ritlp; - test-50: lschema_ritlp /lschema_ritlp; - test-51: lschema_ritlp/ lschema_ritlp; - test-52: lschema_ritlp / lschema_ritlp; - test-53: lschema_ritlp/litlp_rschema; - test-54: lschema_ritlp /litlp_rschema; - test-55: lschema_ritlp/ litlp_rschema; - test-56: lschema_ritlp / litlp_rschema; - test-57: litlp_rschema/litlp_rschema; - test-58: litlp_rschema /litlp_rschema; - test-59: litlp_rschema/ litlp_rschema; - test-60: litlp_rschema / litlp_rschema; -} - -<===> warning -DEPRECATION WARNING on line 14 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{literal / lschema_}ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 15 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{literal / lschema_}ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 16 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{literal / lschema_}ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 17 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{literal / lschema_}ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 30 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{"quoted" / lschema_}ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 31 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{"quoted" / lschema_}ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 32 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{"quoted" / lschema_}ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 33 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{"quoted" / lschema_}ritlp") - -You can use the sass-convert command to automatically fix most cases. diff --git a/spec/parser/operations/logic_eq/dimensions/pairs-4.0.hrx b/spec/parser/operations/logic_eq/dimensions/pairs-4.0.hrx index fc3517fcaa..0d523b2437 100644 --- a/spec/parser/operations/logic_eq/dimensions/pairs-4.0.hrx +++ b/spec/parser/operations/logic_eq/dimensions/pairs-4.0.hrx @@ -2,7 +2,6 @@ --- :todo: - libsass -:start_version: '4.0' :todo: - libsass diff --git a/spec/parser/operations/logic_eq/dimensions/pairs.hrx b/spec/parser/operations/logic_eq/dimensions/pairs.hrx deleted file mode 100644 index 7ce61b2239..0000000000 --- a/spec/parser/operations/logic_eq/dimensions/pairs.hrx +++ /dev/null @@ -1,582 +0,0 @@ -<===> options.yml ---- -:warning_todo: -- libsass -:end_version: '3.5' - -<===> input.scss -foo { - test-1: 10==10; - test-2: 10 ==10; - test-3: 10== 10; - test-4: 10 == 10; - test-5: 10==10px; - test-6: 10 ==10px; - test-7: 10== 10px; - test-8: 10 == 10px; - test-9: 10==#{10}px; - test-10: 10 ==#{10}px; - test-11: 10== #{10}px; - test-12: 10 == #{10}px; - test-13: 10==1#{0}px; - test-14: 10 ==1#{0}px; - test-15: 10== 1#{0}px; - test-16: 10 == 1#{0}px; - test-17: 10==10#{px}; - test-18: 10 ==10#{px}; - test-19: 10== 10#{px}; - test-20: 10 == 10#{px}; - test-21: 10==10#{p}x; - test-22: 10 ==10#{p}x; - test-23: 10== 10#{p}x; - test-24: 10 == 10#{p}x; - test-25: 10px==10px; - test-26: 10px ==10px; - test-27: 10px== 10px; - test-28: 10px == 10px; - test-29: 10px==#{10}px; - test-30: 10px ==#{10}px; - test-31: 10px== #{10}px; - test-32: 10px == #{10}px; - test-33: 10px==1#{0}px; - test-34: 10px ==1#{0}px; - test-35: 10px== 1#{0}px; - test-36: 10px == 1#{0}px; - test-37: 10px==10#{px}; - test-38: 10px ==10#{px}; - test-39: 10px== 10#{px}; - test-40: 10px == 10#{px}; - test-41: 10px==10#{p}x; - test-42: 10px ==10#{p}x; - test-43: 10px== 10#{p}x; - test-44: 10px == 10#{p}x; - test-45: #{10}px==#{10}px; - test-46: #{10}px ==#{10}px; - test-47: #{10}px== #{10}px; - test-48: #{10}px == #{10}px; - test-49: #{10}px==1#{0}px; - test-50: #{10}px ==1#{0}px; - test-51: #{10}px== 1#{0}px; - test-52: #{10}px == 1#{0}px; - test-53: #{10}px==10#{px}; - test-54: #{10}px ==10#{px}; - test-55: #{10}px== 10#{px}; - test-56: #{10}px == 10#{px}; - test-57: #{10}px==10#{p}x; - test-58: #{10}px ==10#{p}x; - test-59: #{10}px== 10#{p}x; - test-60: #{10}px == 10#{p}x; - test-61: 1#{0}px==1#{0}px; - test-62: 1#{0}px ==1#{0}px; - test-63: 1#{0}px== 1#{0}px; - test-64: 1#{0}px == 1#{0}px; - test-65: 1#{0}px==10#{px}; - test-66: 1#{0}px ==10#{px}; - test-67: 1#{0}px== 10#{px}; - test-68: 1#{0}px == 10#{px}; - test-69: 1#{0}px==10#{p}x; - test-70: 1#{0}px ==10#{p}x; - test-71: 1#{0}px== 10#{p}x; - test-72: 1#{0}px == 10#{p}x; - test-73: 10#{px}==10#{px}; - test-74: 10#{px} ==10#{px}; - test-75: 10#{px}== 10#{px}; - test-76: 10#{px} == 10#{px}; - test-77: 10#{px}==10#{p}x; - test-78: 10#{px} ==10#{p}x; - test-79: 10#{px}== 10#{p}x; - test-80: 10#{px} == 10#{p}x; - test-81: 10#{p}x==10#{p}x; - test-82: 10#{p}x ==10#{p}x; - test-83: 10#{p}x== 10#{p}x; - test-84: 10#{p}x == 10#{p}x; -} - -<===> output.css -foo { - test-1: true; - test-2: true; - test-3: true; - test-4: true; - test-5: true; - test-6: true; - test-7: true; - test-8: true; - test-9: 10==10px; - test-10: 10 ==10px; - test-11: 10== 10px; - test-12: 10 == 10px; - test-13: false0px; - test-14: false0px; - test-15: false0px; - test-16: false0px; - test-17: truepx; - test-18: truepx; - test-19: truepx; - test-20: truepx; - test-21: truepx; - test-22: truepx; - test-23: truepx; - test-24: truepx; - test-25: true; - test-26: true; - test-27: true; - test-28: true; - test-29: 10px==10px; - test-30: 10px ==10px; - test-31: 10px== 10px; - test-32: 10px == 10px; - test-33: false0px; - test-34: false0px; - test-35: false0px; - test-36: false0px; - test-37: truepx; - test-38: truepx; - test-39: truepx; - test-40: truepx; - test-41: truepx; - test-42: truepx; - test-43: truepx; - test-44: truepx; - test-45: 10px==10px; - test-46: 10px ==10px; - test-47: 10px== 10px; - test-48: 10px == 10px; - test-49: 10false0px; - test-50: 10false0px; - test-51: 10false0px; - test-52: 10false0px; - test-53: 10falsepx; - test-54: 10falsepx; - test-55: 10falsepx; - test-56: 10falsepx; - test-57: 10falsepx; - test-58: 10falsepx; - test-59: 10falsepx; - test-60: 10falsepx; - test-61: 10false0px; - test-62: 10false0px; - test-63: 10false0px; - test-64: 10false0px; - test-65: 10falsepx; - test-66: 10falsepx; - test-67: 10falsepx; - test-68: 10falsepx; - test-69: 10falsepx; - test-70: 10falsepx; - test-71: 10falsepx; - test-72: 10falsepx; - test-73: 10px==10px; - test-74: 10px ==10px; - test-75: 10px== 10px; - test-76: 10px == 10px; - test-77: 10px==10px; - test-78: 10px ==10px; - test-79: 10px== 10px; - test-80: 10px == 10px; - test-81: 10pfalsepx; - test-82: 10pfalsepx; - test-83: 10pfalsepx; - test-84: 10pfalsepx; -} - -<===> warning -DEPRECATION WARNING on line 10 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10==10px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 11 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 ==10px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 12 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10== 10px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 13 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 == 10px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 14 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 == 1}0px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 15 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 == 1}0px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 16 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 == 1}0px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 17 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 == 1}0px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 18 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 == 10}px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 19 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 == 10}px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 20 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 == 10}px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 21 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 == 10}px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 22 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 == 10}px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 23 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 == 10}px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 24 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 == 10}px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 25 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 == 10}px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 30 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10px==10px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 31 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10px ==10px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 32 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10px== 10px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 33 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10px == 10px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 34 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10px == 1}0px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 35 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10px == 1}0px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 36 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10px == 1}0px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 37 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10px == 1}0px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 38 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10px == 10}px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 39 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10px == 10}px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 40 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10px == 10}px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 41 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10px == 10}px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 42 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10px == 10}px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 43 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10px == 10}px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 44 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10px == 10}px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 45 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10px == 10}px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 46 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10px==10px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 47 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10px ==10px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 48 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10px== 10px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 49 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10px == 10px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 74 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10px==10px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 75 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10px ==10px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 76 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10px== 10px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 77 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10px == 10px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 78 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10px==10px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 79 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10px ==10px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 80 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10px== 10px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 81 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10px == 10px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 6 of input.scss: -The result of `10 == 10px` will be `false` in future releases of Sass. -Unitless numbers will no longer be equal to the same numbers with units. - -DEPRECATION WARNING on line 7 of input.scss: -The result of `10 == 10px` will be `false` in future releases of Sass. -Unitless numbers will no longer be equal to the same numbers with units. - -DEPRECATION WARNING on line 8 of input.scss: -The result of `10 == 10px` will be `false` in future releases of Sass. -Unitless numbers will no longer be equal to the same numbers with units. - -DEPRECATION WARNING on line 9 of input.scss: -The result of `10 == 10px` will be `false` in future releases of Sass. -Unitless numbers will no longer be equal to the same numbers with units. - -DEPRECATION WARNING on line 38 of input.scss: -The result of `10px == 10` will be `false` in future releases of Sass. -Unitless numbers will no longer be equal to the same numbers with units. - -DEPRECATION WARNING on line 39 of input.scss: -The result of `10px == 10` will be `false` in future releases of Sass. -Unitless numbers will no longer be equal to the same numbers with units. - -DEPRECATION WARNING on line 40 of input.scss: -The result of `10px == 10` will be `false` in future releases of Sass. -Unitless numbers will no longer be equal to the same numbers with units. - -DEPRECATION WARNING on line 41 of input.scss: -The result of `10px == 10` will be `false` in future releases of Sass. -Unitless numbers will no longer be equal to the same numbers with units. - -DEPRECATION WARNING on line 42 of input.scss: -The result of `10px == 10` will be `false` in future releases of Sass. -Unitless numbers will no longer be equal to the same numbers with units. - -DEPRECATION WARNING on line 43 of input.scss: -The result of `10px == 10` will be `false` in future releases of Sass. -Unitless numbers will no longer be equal to the same numbers with units. - -DEPRECATION WARNING on line 44 of input.scss: -The result of `10px == 10` will be `false` in future releases of Sass. -Unitless numbers will no longer be equal to the same numbers with units. - -DEPRECATION WARNING on line 45 of input.scss: -The result of `10px == 10` will be `false` in future releases of Sass. -Unitless numbers will no longer be equal to the same numbers with units. diff --git a/spec/parser/operations/logic_eq/mixed/pairs-4.0.hrx b/spec/parser/operations/logic_eq/mixed/pairs-4.0.hrx index 5fecc27000..086114ffb8 100644 --- a/spec/parser/operations/logic_eq/mixed/pairs-4.0.hrx +++ b/spec/parser/operations/logic_eq/mixed/pairs-4.0.hrx @@ -2,7 +2,6 @@ --- :todo: - libsass -:start_version: '4.0' :todo: - libsass diff --git a/spec/parser/operations/logic_eq/mixed/pairs.hrx b/spec/parser/operations/logic_eq/mixed/pairs.hrx deleted file mode 100644 index 6e4aeb36c5..0000000000 --- a/spec/parser/operations/logic_eq/mixed/pairs.hrx +++ /dev/null @@ -1,326 +0,0 @@ -<===> options.yml ---- -:warning_todo: -- libsass -:end_version: '3.5' - -<===> input.scss -foo { - test-1: 10==10; - test-2: 10 ==10; - test-3: 10== 10; - test-4: 10 == 10; - test-5: 10==10%; - test-6: 10 ==10%; - test-7: 10== 10%; - test-8: 10 == 10%; - test-9: 10==10px; - test-10: 10 ==10px; - test-11: 10== 10px; - test-12: 10 == 10px; - test-13: 10==#AAA; - test-14: 10 ==#AAA; - test-15: 10== #AAA; - test-16: 10 == #AAA; - test-17: 10==#{itpl}; - test-18: 10 ==#{itpl}; - test-19: 10== #{itpl}; - test-20: 10 == #{itpl}; - test-21: 10%==10%; - test-22: 10% ==10%; - test-23: 10%== 10%; - test-24: 10% == 10%; - test-25: 10%==10px; - test-26: 10% ==10px; - test-27: 10%== 10px; - test-28: 10% == 10px; - test-29: 10%==#AAA; - test-30: 10% ==#AAA; - test-31: 10%== #AAA; - test-32: 10% == #AAA; - test-33: 10%==#{itpl}; - test-34: 10% ==#{itpl}; - test-35: 10%== #{itpl}; - test-36: 10% == #{itpl}; - test-37: 10px==10px; - test-38: 10px ==10px; - test-39: 10px== 10px; - test-40: 10px == 10px; - test-41: 10px==#AAA; - test-42: 10px ==#AAA; - test-43: 10px== #AAA; - test-44: 10px == #AAA; - test-45: 10px==#{itpl}; - test-46: 10px ==#{itpl}; - test-47: 10px== #{itpl}; - test-48: 10px == #{itpl}; - test-49: #AAA==#AAA; - test-50: #AAA ==#AAA; - test-51: #AAA== #AAA; - test-52: #AAA == #AAA; - test-53: #AAA==#{itpl}; - test-54: #AAA ==#{itpl}; - test-55: #AAA== #{itpl}; - test-56: #AAA == #{itpl}; - test-57: #{itpl}==#{itpl}; - test-58: #{itpl} ==#{itpl}; - test-59: #{itpl}== #{itpl}; - test-60: #{itpl} == #{itpl}; -} - -<===> output.css -foo { - test-1: true; - test-2: true; - test-3: true; - test-4: true; - test-5: true; - test-6: true; - test-7: true; - test-8: true; - test-9: true; - test-10: true; - test-11: true; - test-12: true; - test-13: false; - test-14: false; - test-15: false; - test-16: false; - test-17: 10==itpl; - test-18: 10 ==itpl; - test-19: 10== itpl; - test-20: 10 == itpl; - test-21: true; - test-22: true; - test-23: true; - test-24: true; - test-25: false; - test-26: false; - test-27: false; - test-28: false; - test-29: false; - test-30: false; - test-31: false; - test-32: false; - test-33: 10%==itpl; - test-34: 10% ==itpl; - test-35: 10%== itpl; - test-36: 10% == itpl; - test-37: true; - test-38: true; - test-39: true; - test-40: true; - test-41: false; - test-42: false; - test-43: false; - test-44: false; - test-45: 10px==itpl; - test-46: 10px ==itpl; - test-47: 10px== itpl; - test-48: 10px == itpl; - test-49: true; - test-50: true; - test-51: true; - test-52: true; - test-53: #AAA==itpl; - test-54: #AAA ==itpl; - test-55: #AAA== itpl; - test-56: #AAA == itpl; - test-57: itpl==itpl; - test-58: itpl ==itpl; - test-59: itpl== itpl; - test-60: itpl == itpl; -} - -<===> warning -DEPRECATION WARNING on line 18 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10==itpl") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 19 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 ==itpl") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 20 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10== itpl") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 21 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 == itpl") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 34 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10%==itpl") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 35 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10% ==itpl") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 36 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10%== itpl") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 37 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10% == itpl") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 46 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10px==itpl") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 47 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10px ==itpl") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 48 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10px== itpl") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 49 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10px == itpl") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 54 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#AAA==itpl") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 55 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#AAA ==itpl") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 56 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#AAA== itpl") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 57 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#AAA == itpl") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 58 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("itpl==itpl") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 59 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("itpl ==itpl") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 60 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("itpl== itpl") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 61 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("itpl == itpl") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 6 of input.scss: -The result of `10 == 10%` will be `false` in future releases of Sass. -Unitless numbers will no longer be equal to the same numbers with units. - -DEPRECATION WARNING on line 7 of input.scss: -The result of `10 == 10%` will be `false` in future releases of Sass. -Unitless numbers will no longer be equal to the same numbers with units. - -DEPRECATION WARNING on line 8 of input.scss: -The result of `10 == 10%` will be `false` in future releases of Sass. -Unitless numbers will no longer be equal to the same numbers with units. - -DEPRECATION WARNING on line 9 of input.scss: -The result of `10 == 10%` will be `false` in future releases of Sass. -Unitless numbers will no longer be equal to the same numbers with units. - -DEPRECATION WARNING on line 10 of input.scss: -The result of `10 == 10px` will be `false` in future releases of Sass. -Unitless numbers will no longer be equal to the same numbers with units. - -DEPRECATION WARNING on line 11 of input.scss: -The result of `10 == 10px` will be `false` in future releases of Sass. -Unitless numbers will no longer be equal to the same numbers with units. - -DEPRECATION WARNING on line 12 of input.scss: -The result of `10 == 10px` will be `false` in future releases of Sass. -Unitless numbers will no longer be equal to the same numbers with units. - -DEPRECATION WARNING on line 13 of input.scss: -The result of `10 == 10px` will be `false` in future releases of Sass. -Unitless numbers will no longer be equal to the same numbers with units. diff --git a/spec/parser/operations/logic_eq/numbers/pairs-4.0.hrx b/spec/parser/operations/logic_eq/numbers/pairs-4.0.hrx index 18be4aff92..73f52c0409 100644 --- a/spec/parser/operations/logic_eq/numbers/pairs-4.0.hrx +++ b/spec/parser/operations/logic_eq/numbers/pairs-4.0.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: '4.0' :todo: - libsass diff --git a/spec/parser/operations/logic_eq/numbers/pairs.hrx b/spec/parser/operations/logic_eq/numbers/pairs.hrx deleted file mode 100644 index cfea32264e..0000000000 --- a/spec/parser/operations/logic_eq/numbers/pairs.hrx +++ /dev/null @@ -1,382 +0,0 @@ -<===> options.yml ---- -:end_version: '3.5' -:warning_todo: -- libsass - -<===> input.scss -foo { - test-1: 10==10; - test-2: 10 ==10; - test-3: 10== 10; - test-4: 10 == 10; - test-5: 10==#{10}; - test-6: 10 ==#{10}; - test-7: 10== #{10}; - test-8: 10 == #{10}; - test-9: 10==1#{0}; - test-10: 10 ==1#{0}; - test-11: 10== 1#{0}; - test-12: 10 == 1#{0}; - test-13: 10==#{1}0; - test-14: 10 ==#{1}0; - test-15: 10== #{1}0; - test-16: 10 == #{1}0; - test-17: #{10}==#{10}; - test-18: #{10} ==#{10}; - test-19: #{10}== #{10}; - test-20: #{10} == #{10}; - test-21: #{10}==1#{0}; - test-22: #{10} ==1#{0}; - test-23: #{10}== 1#{0}; - test-24: #{10} == 1#{0}; - test-25: #{10}==#{1}0; - test-26: #{10} ==#{1}0; - test-27: #{10}== #{1}0; - test-28: #{10} == #{1}0; - test-29: 1#{0}==1#{0}; - test-30: 1#{0} ==1#{0}; - test-31: 1#{0}== 1#{0}; - test-32: 1#{0} == 1#{0}; - test-33: 1#{0}==#{1}0; - test-34: 1#{0} ==#{1}0; - test-35: 1#{0}== #{1}0; - test-36: 1#{0} == #{1}0; - test-37: #{1}0==#{1}0; - test-38: #{1}0 ==#{1}0; - test-39: #{1}0== #{1}0; - test-40: #{1}0 == #{1}0; -} - -<===> output.css -foo { - test-1: true; - test-2: true; - test-3: true; - test-4: true; - test-5: 10==10; - test-6: 10 ==10; - test-7: 10== 10; - test-8: 10 == 10; - test-9: false0; - test-10: false0; - test-11: false0; - test-12: false0; - test-13: 10==10; - test-14: 10 ==10; - test-15: 10== 10; - test-16: 10 == 10; - test-17: 10==10; - test-18: 10 ==10; - test-19: 10== 10; - test-20: 10 == 10; - test-21: 10==10; - test-22: 10 ==10; - test-23: 10== 10; - test-24: 10 == 10; - test-25: 10==10; - test-26: 10 ==10; - test-27: 10== 10; - test-28: 10 == 10; - test-29: 10==10; - test-30: 10 ==10; - test-31: 10== 10; - test-32: 10 == 10; - test-33: 10==10; - test-34: 10 ==10; - test-35: 10== 10; - test-36: 10 == 10; - test-37: 10==10; - test-38: 10 ==10; - test-39: 10== 10; - test-40: 10 == 10; -} - -<===> warning -DEPRECATION WARNING on line 6 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10==10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 7 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 ==10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 8 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10== 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 9 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 == 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 10 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 == 1}0") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 11 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 == 1}0") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 12 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 == 1}0") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 13 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 == 1}0") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 14 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10==10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 15 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 ==10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 16 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10== 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 17 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 == 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 18 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10==10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 19 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 ==10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 20 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10== 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 21 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 == 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 22 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10==10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 23 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 ==10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 24 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10== 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 25 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 == 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 26 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10==10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 27 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 ==10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 28 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10== 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 29 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 == 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 30 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10==10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 31 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 ==10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 32 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10== 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 33 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 == 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 34 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10==10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 35 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 ==10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 36 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10== 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 37 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 == 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 38 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10==10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 39 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 ==10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 40 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10== 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 41 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 == 10") - -You can use the sass-convert command to automatically fix most cases. diff --git a/spec/parser/operations/logic_eq/strings/pairs-4.0.hrx b/spec/parser/operations/logic_eq/strings/pairs-4.0.hrx index 61738dbc3e..9e327d238e 100644 --- a/spec/parser/operations/logic_eq/strings/pairs-4.0.hrx +++ b/spec/parser/operations/logic_eq/strings/pairs-4.0.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: '4.0' :todo: - libsass diff --git a/spec/parser/operations/logic_eq/strings/pairs.hrx b/spec/parser/operations/logic_eq/strings/pairs.hrx deleted file mode 100644 index 19c5414364..0000000000 --- a/spec/parser/operations/logic_eq/strings/pairs.hrx +++ /dev/null @@ -1,518 +0,0 @@ -<===> options.yml ---- -:end_version: '3.5' -:warning_todo: -- libsass - -<===> input.scss -foo { - test-1: literal==literal; - test-2: literal ==literal; - test-3: literal== literal; - test-4: literal == literal; - test-5: literal=="quoted"; - test-6: literal =="quoted"; - test-7: literal== "quoted"; - test-8: literal == "quoted"; - test-9: literal==#{interpolant}; - test-10: literal ==#{interpolant}; - test-11: literal== #{interpolant}; - test-12: literal == #{interpolant}; - test-13: literal==lschema_#{ritlp}; - test-14: literal ==lschema_#{ritlp}; - test-15: literal== lschema_#{ritlp}; - test-16: literal == lschema_#{ritlp}; - test-17: literal==#{litlp}_rschema; - test-18: literal ==#{litlp}_rschema; - test-19: literal== #{litlp}_rschema; - test-20: literal == #{litlp}_rschema; - test-21: "quoted"=="quoted"; - test-22: "quoted" =="quoted"; - test-23: "quoted"== "quoted"; - test-24: "quoted" == "quoted"; - test-25: "quoted"==#{interpolant}; - test-26: "quoted" ==#{interpolant}; - test-27: "quoted"== #{interpolant}; - test-28: "quoted" == #{interpolant}; - test-29: "quoted"==lschema_#{ritlp}; - test-30: "quoted" ==lschema_#{ritlp}; - test-31: "quoted"== lschema_#{ritlp}; - test-32: "quoted" == lschema_#{ritlp}; - test-33: "quoted"==#{litlp}_rschema; - test-34: "quoted" ==#{litlp}_rschema; - test-35: "quoted"== #{litlp}_rschema; - test-36: "quoted" == #{litlp}_rschema; - test-37: #{interpolant}==#{interpolant}; - test-38: #{interpolant} ==#{interpolant}; - test-39: #{interpolant}== #{interpolant}; - test-40: #{interpolant} == #{interpolant}; - test-41: #{interpolant}==lschema_#{ritlp}; - test-42: #{interpolant} ==lschema_#{ritlp}; - test-43: #{interpolant}== lschema_#{ritlp}; - test-44: #{interpolant} == lschema_#{ritlp}; - test-45: #{interpolant}==#{litlp}_rschema; - test-46: #{interpolant} ==#{litlp}_rschema; - test-47: #{interpolant}== #{litlp}_rschema; - test-48: #{interpolant} == #{litlp}_rschema; - test-49: lschema_#{ritlp}==lschema_#{ritlp}; - test-50: lschema_#{ritlp} ==lschema_#{ritlp}; - test-51: lschema_#{ritlp}== lschema_#{ritlp}; - test-52: lschema_#{ritlp} == lschema_#{ritlp}; - test-53: lschema_#{ritlp}==#{litlp}_rschema; - test-54: lschema_#{ritlp} ==#{litlp}_rschema; - test-55: lschema_#{ritlp}== #{litlp}_rschema; - test-56: lschema_#{ritlp} == #{litlp}_rschema; - test-57: #{litlp}_rschema==#{litlp}_rschema; - test-58: #{litlp}_rschema ==#{litlp}_rschema; - test-59: #{litlp}_rschema== #{litlp}_rschema; - test-60: #{litlp}_rschema == #{litlp}_rschema; -} - -<===> output.css -foo { - test-1: true; - test-2: true; - test-3: true; - test-4: true; - test-5: false; - test-6: false; - test-7: false; - test-8: false; - test-9: literal==interpolant; - test-10: literal ==interpolant; - test-11: literal== interpolant; - test-12: literal == interpolant; - test-13: falseritlp; - test-14: falseritlp; - test-15: falseritlp; - test-16: falseritlp; - test-17: literal==litlp_rschema; - test-18: literal ==litlp_rschema; - test-19: literal== litlp_rschema; - test-20: literal == litlp_rschema; - test-21: true; - test-22: true; - test-23: true; - test-24: true; - test-25: "quoted"==interpolant; - test-26: "quoted" ==interpolant; - test-27: "quoted"== interpolant; - test-28: "quoted" == interpolant; - test-29: falseritlp; - test-30: falseritlp; - test-31: falseritlp; - test-32: falseritlp; - test-33: "quoted"==litlp_rschema; - test-34: "quoted" ==litlp_rschema; - test-35: "quoted"== litlp_rschema; - test-36: "quoted" == litlp_rschema; - test-37: interpolant==interpolant; - test-38: interpolant ==interpolant; - test-39: interpolant== interpolant; - test-40: interpolant == interpolant; - test-41: interpolant==lschema_ritlp; - test-42: interpolant ==lschema_ritlp; - test-43: interpolant== lschema_ritlp; - test-44: interpolant == lschema_ritlp; - test-45: interpolant==litlp_rschema; - test-46: interpolant ==litlp_rschema; - test-47: interpolant== litlp_rschema; - test-48: interpolant == litlp_rschema; - test-49: lschema_ritlp==lschema_ritlp; - test-50: lschema_ritlp ==lschema_ritlp; - test-51: lschema_ritlp== lschema_ritlp; - test-52: lschema_ritlp == lschema_ritlp; - test-53: lschema_ritlp==litlp_rschema; - test-54: lschema_ritlp ==litlp_rschema; - test-55: lschema_ritlp== litlp_rschema; - test-56: lschema_ritlp == litlp_rschema; - test-57: litlp_rschema==litlp_rschema; - test-58: litlp_rschema ==litlp_rschema; - test-59: litlp_rschema== litlp_rschema; - test-60: litlp_rschema == litlp_rschema; -} - -<===> warning -DEPRECATION WARNING on line 10 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("literal==interpolant") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 11 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("literal ==interpolant") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 12 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("literal== interpolant") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 13 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("literal == interpolant") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 14 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{literal == lschema_}ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 15 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{literal == lschema_}ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 16 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{literal == lschema_}ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 17 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{literal == lschema_}ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 18 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("literal==litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 19 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("literal ==litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 20 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("literal== litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 21 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("literal == litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 26 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote('"quoted"==interpolant') - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 27 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote('"quoted" ==interpolant') - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 28 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote('"quoted"== interpolant') - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 29 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote('"quoted" == interpolant') - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 30 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{"quoted" == lschema_}ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 31 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{"quoted" == lschema_}ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 32 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{"quoted" == lschema_}ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 33 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{"quoted" == lschema_}ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 34 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote('"quoted"==litlp_rschema') - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 35 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote('"quoted" ==litlp_rschema') - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 36 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote('"quoted"== litlp_rschema') - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 37 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote('"quoted" == litlp_rschema') - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 38 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant==interpolant") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 39 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant ==interpolant") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 40 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant== interpolant") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 41 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant == interpolant") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 42 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant==lschema_ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 43 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant ==lschema_ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 44 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant== lschema_ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 45 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant == lschema_ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 46 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant==litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 47 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant ==litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 48 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant== litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 49 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant == litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 50 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("lschema_ritlp==lschema_ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 51 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("lschema_ritlp ==lschema_ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 52 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("lschema_ritlp== lschema_ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 53 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("lschema_ritlp == lschema_ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 54 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("lschema_ritlp==litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 55 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("lschema_ritlp ==litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 56 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("lschema_ritlp== litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 57 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("lschema_ritlp == litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 58 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("litlp_rschema==litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 59 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("litlp_rschema ==litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 60 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("litlp_rschema== litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 61 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("litlp_rschema == litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. diff --git a/spec/parser/operations/logic_ge/numbers/pairs.hrx b/spec/parser/operations/logic_ge/numbers/pairs.hrx deleted file mode 100644 index fb8298f8ba..0000000000 --- a/spec/parser/operations/logic_ge/numbers/pairs.hrx +++ /dev/null @@ -1,382 +0,0 @@ -<===> options.yml ---- -:end_version: '3.5' -:warning_todo: -- libsass - -<===> input.scss -foo { - test-1: 10>=10; - test-2: 10 >=10; - test-3: 10>= 10; - test-4: 10 >= 10; - test-5: 10>=#{10}; - test-6: 10 >=#{10}; - test-7: 10>= #{10}; - test-8: 10 >= #{10}; - test-9: 10>=1#{0}; - test-10: 10 >=1#{0}; - test-11: 10>= 1#{0}; - test-12: 10 >= 1#{0}; - test-13: 10>=#{1}0; - test-14: 10 >=#{1}0; - test-15: 10>= #{1}0; - test-16: 10 >= #{1}0; - test-17: #{10}>=#{10}; - test-18: #{10} >=#{10}; - test-19: #{10}>= #{10}; - test-20: #{10} >= #{10}; - test-21: #{10}>=1#{0}; - test-22: #{10} >=1#{0}; - test-23: #{10}>= 1#{0}; - test-24: #{10} >= 1#{0}; - test-25: #{10}>=#{1}0; - test-26: #{10} >=#{1}0; - test-27: #{10}>= #{1}0; - test-28: #{10} >= #{1}0; - test-29: 1#{0}>=1#{0}; - test-30: 1#{0} >=1#{0}; - test-31: 1#{0}>= 1#{0}; - test-32: 1#{0} >= 1#{0}; - test-33: 1#{0}>=#{1}0; - test-34: 1#{0} >=#{1}0; - test-35: 1#{0}>= #{1}0; - test-36: 1#{0} >= #{1}0; - test-37: #{1}0>=#{1}0; - test-38: #{1}0 >=#{1}0; - test-39: #{1}0>= #{1}0; - test-40: #{1}0 >= #{1}0; -} - -<===> output.css -foo { - test-1: true; - test-2: true; - test-3: true; - test-4: true; - test-5: 10>=10; - test-6: 10 >=10; - test-7: 10>= 10; - test-8: 10 >= 10; - test-9: true0; - test-10: true0; - test-11: true0; - test-12: true0; - test-13: 10>=10; - test-14: 10 >=10; - test-15: 10>= 10; - test-16: 10 >= 10; - test-17: 10>=10; - test-18: 10 >=10; - test-19: 10>= 10; - test-20: 10 >= 10; - test-21: 10>=10; - test-22: 10 >=10; - test-23: 10>= 10; - test-24: 10 >= 10; - test-25: 10>=10; - test-26: 10 >=10; - test-27: 10>= 10; - test-28: 10 >= 10; - test-29: 10>=10; - test-30: 10 >=10; - test-31: 10>= 10; - test-32: 10 >= 10; - test-33: 10>=10; - test-34: 10 >=10; - test-35: 10>= 10; - test-36: 10 >= 10; - test-37: 10>=10; - test-38: 10 >=10; - test-39: 10>= 10; - test-40: 10 >= 10; -} - -<===> warning -DEPRECATION WARNING on line 6 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10>=10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 7 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 >=10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 8 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10>= 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 9 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 >= 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 10 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 >= 1}0") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 11 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 >= 1}0") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 12 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 >= 1}0") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 13 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 >= 1}0") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 14 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10>=10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 15 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 >=10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 16 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10>= 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 17 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 >= 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 18 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10>=10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 19 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 >=10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 20 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10>= 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 21 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 >= 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 22 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10>=10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 23 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 >=10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 24 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10>= 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 25 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 >= 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 26 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10>=10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 27 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 >=10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 28 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10>= 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 29 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 >= 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 30 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10>=10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 31 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 >=10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 32 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10>= 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 33 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 >= 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 34 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10>=10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 35 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 >=10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 36 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10>= 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 37 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 >= 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 38 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10>=10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 39 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 >=10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 40 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10>= 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 41 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 >= 10") - -You can use the sass-convert command to automatically fix most cases. diff --git a/spec/parser/operations/logic_ge/strings/pairs.hrx b/spec/parser/operations/logic_ge/strings/pairs.hrx deleted file mode 100644 index 53d247705c..0000000000 --- a/spec/parser/operations/logic_ge/strings/pairs.hrx +++ /dev/null @@ -1,254 +0,0 @@ -<===> options.yml ---- -:end_version: '3.5' -:warning_todo: -- libsass - -<===> input.scss -foo { - test-37: #{interpolant}>=#{interpolant}; - test-38: #{interpolant} >=#{interpolant}; - test-39: #{interpolant}>= #{interpolant}; - test-40: #{interpolant} >= #{interpolant}; - test-41: #{interpolant}>=lschema_#{ritlp}; - test-42: #{interpolant} >=lschema_#{ritlp}; - test-43: #{interpolant}>= lschema_#{ritlp}; - test-44: #{interpolant} >= lschema_#{ritlp}; - test-45: #{interpolant}>=#{litlp}_rschema; - test-46: #{interpolant} >=#{litlp}_rschema; - test-47: #{interpolant}>= #{litlp}_rschema; - test-48: #{interpolant} >= #{litlp}_rschema; - test-49: lschema_#{ritlp}>=lschema_#{ritlp}; - test-50: lschema_#{ritlp} >=lschema_#{ritlp}; - test-51: lschema_#{ritlp}>= lschema_#{ritlp}; - test-52: lschema_#{ritlp} >= lschema_#{ritlp}; - test-53: lschema_#{ritlp}>=#{litlp}_rschema; - test-54: lschema_#{ritlp} >=#{litlp}_rschema; - test-55: lschema_#{ritlp}>= #{litlp}_rschema; - test-56: lschema_#{ritlp} >= #{litlp}_rschema; - test-57: #{litlp}_rschema>=#{litlp}_rschema; - test-58: #{litlp}_rschema >=#{litlp}_rschema; - test-59: #{litlp}_rschema>= #{litlp}_rschema; - test-60: #{litlp}_rschema >= #{litlp}_rschema; -} - -<===> output.css -foo { - test-37: interpolant>=interpolant; - test-38: interpolant >=interpolant; - test-39: interpolant>= interpolant; - test-40: interpolant >= interpolant; - test-41: interpolant>=lschema_ritlp; - test-42: interpolant >=lschema_ritlp; - test-43: interpolant>= lschema_ritlp; - test-44: interpolant >= lschema_ritlp; - test-45: interpolant>=litlp_rschema; - test-46: interpolant >=litlp_rschema; - test-47: interpolant>= litlp_rschema; - test-48: interpolant >= litlp_rschema; - test-49: lschema_ritlp>=lschema_ritlp; - test-50: lschema_ritlp >=lschema_ritlp; - test-51: lschema_ritlp>= lschema_ritlp; - test-52: lschema_ritlp >= lschema_ritlp; - test-53: lschema_ritlp>=litlp_rschema; - test-54: lschema_ritlp >=litlp_rschema; - test-55: lschema_ritlp>= litlp_rschema; - test-56: lschema_ritlp >= litlp_rschema; - test-57: litlp_rschema>=litlp_rschema; - test-58: litlp_rschema >=litlp_rschema; - test-59: litlp_rschema>= litlp_rschema; - test-60: litlp_rschema >= litlp_rschema; -} - -<===> warning -DEPRECATION WARNING on line 2 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant>=interpolant") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 3 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant >=interpolant") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 4 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant>= interpolant") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 5 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant >= interpolant") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 6 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant>=lschema_ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 7 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant >=lschema_ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 8 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant>= lschema_ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 9 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant >= lschema_ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 10 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant>=litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 11 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant >=litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 12 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant>= litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 13 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant >= litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 14 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("lschema_ritlp>=lschema_ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 15 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("lschema_ritlp >=lschema_ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 16 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("lschema_ritlp>= lschema_ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 17 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("lschema_ritlp >= lschema_ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 18 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("lschema_ritlp>=litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 19 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("lschema_ritlp >=litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 20 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("lschema_ritlp>= litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 21 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("lschema_ritlp >= litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 22 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("litlp_rschema>=litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 23 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("litlp_rschema >=litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 24 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("litlp_rschema>= litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 25 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("litlp_rschema >= litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. diff --git a/spec/parser/operations/logic_gt/numbers/pairs.hrx b/spec/parser/operations/logic_gt/numbers/pairs.hrx deleted file mode 100644 index 7b4b90a2ac..0000000000 --- a/spec/parser/operations/logic_gt/numbers/pairs.hrx +++ /dev/null @@ -1,382 +0,0 @@ -<===> options.yml ---- -:end_version: '3.5' -:warning_todo: -- libsass - -<===> input.scss -foo { - test-1: 10>10; - test-2: 10 >10; - test-3: 10> 10; - test-4: 10 > 10; - test-5: 10>#{10}; - test-6: 10 >#{10}; - test-7: 10> #{10}; - test-8: 10 > #{10}; - test-9: 10>1#{0}; - test-10: 10 >1#{0}; - test-11: 10> 1#{0}; - test-12: 10 > 1#{0}; - test-13: 10>#{1}0; - test-14: 10 >#{1}0; - test-15: 10> #{1}0; - test-16: 10 > #{1}0; - test-17: #{10}>#{10}; - test-18: #{10} >#{10}; - test-19: #{10}> #{10}; - test-20: #{10} > #{10}; - test-21: #{10}>1#{0}; - test-22: #{10} >1#{0}; - test-23: #{10}> 1#{0}; - test-24: #{10} > 1#{0}; - test-25: #{10}>#{1}0; - test-26: #{10} >#{1}0; - test-27: #{10}> #{1}0; - test-28: #{10} > #{1}0; - test-29: 1#{0}>1#{0}; - test-30: 1#{0} >1#{0}; - test-31: 1#{0}> 1#{0}; - test-32: 1#{0} > 1#{0}; - test-33: 1#{0}>#{1}0; - test-34: 1#{0} >#{1}0; - test-35: 1#{0}> #{1}0; - test-36: 1#{0} > #{1}0; - test-37: #{1}0>#{1}0; - test-38: #{1}0 >#{1}0; - test-39: #{1}0> #{1}0; - test-40: #{1}0 > #{1}0; -} - -<===> output.css -foo { - test-1: false; - test-2: false; - test-3: false; - test-4: false; - test-5: 10>10; - test-6: 10 >10; - test-7: 10> 10; - test-8: 10 > 10; - test-9: true0; - test-10: true0; - test-11: true0; - test-12: true0; - test-13: 10>10; - test-14: 10 >10; - test-15: 10> 10; - test-16: 10 > 10; - test-17: 10>10; - test-18: 10 >10; - test-19: 10> 10; - test-20: 10 > 10; - test-21: 10>10; - test-22: 10 >10; - test-23: 10> 10; - test-24: 10 > 10; - test-25: 10>10; - test-26: 10 >10; - test-27: 10> 10; - test-28: 10 > 10; - test-29: 10>10; - test-30: 10 >10; - test-31: 10> 10; - test-32: 10 > 10; - test-33: 10>10; - test-34: 10 >10; - test-35: 10> 10; - test-36: 10 > 10; - test-37: 10>10; - test-38: 10 >10; - test-39: 10> 10; - test-40: 10 > 10; -} - -<===> warning -DEPRECATION WARNING on line 6 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10>10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 7 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 >10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 8 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10> 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 9 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 > 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 10 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 > 1}0") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 11 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 > 1}0") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 12 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 > 1}0") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 13 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 > 1}0") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 14 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10>10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 15 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 >10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 16 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10> 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 17 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 > 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 18 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10>10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 19 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 >10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 20 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10> 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 21 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 > 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 22 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10>10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 23 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 >10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 24 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10> 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 25 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 > 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 26 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10>10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 27 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 >10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 28 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10> 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 29 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 > 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 30 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10>10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 31 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 >10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 32 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10> 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 33 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 > 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 34 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10>10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 35 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 >10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 36 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10> 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 37 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 > 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 38 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10>10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 39 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 >10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 40 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10> 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 41 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 > 10") - -You can use the sass-convert command to automatically fix most cases. diff --git a/spec/parser/operations/logic_gt/strings/pairs.hrx b/spec/parser/operations/logic_gt/strings/pairs.hrx deleted file mode 100644 index b0898b2fd4..0000000000 --- a/spec/parser/operations/logic_gt/strings/pairs.hrx +++ /dev/null @@ -1,254 +0,0 @@ -<===> options.yml ---- -:end_version: '3.5' -:warning_todo: -- libsass - -<===> input.scss -foo { - test-37: #{interpolant}>#{interpolant}; - test-38: #{interpolant} >#{interpolant}; - test-39: #{interpolant}> #{interpolant}; - test-40: #{interpolant} > #{interpolant}; - test-41: #{interpolant}>lschema_#{ritlp}; - test-42: #{interpolant} >lschema_#{ritlp}; - test-43: #{interpolant}> lschema_#{ritlp}; - test-44: #{interpolant} > lschema_#{ritlp}; - test-45: #{interpolant}>#{litlp}_rschema; - test-46: #{interpolant} >#{litlp}_rschema; - test-47: #{interpolant}> #{litlp}_rschema; - test-48: #{interpolant} > #{litlp}_rschema; - test-49: lschema_#{ritlp}>lschema_#{ritlp}; - test-50: lschema_#{ritlp} >lschema_#{ritlp}; - test-51: lschema_#{ritlp}> lschema_#{ritlp}; - test-52: lschema_#{ritlp} > lschema_#{ritlp}; - test-53: lschema_#{ritlp}>#{litlp}_rschema; - test-54: lschema_#{ritlp} >#{litlp}_rschema; - test-55: lschema_#{ritlp}> #{litlp}_rschema; - test-56: lschema_#{ritlp} > #{litlp}_rschema; - test-57: #{litlp}_rschema>#{litlp}_rschema; - test-58: #{litlp}_rschema >#{litlp}_rschema; - test-59: #{litlp}_rschema> #{litlp}_rschema; - test-60: #{litlp}_rschema > #{litlp}_rschema; -} - -<===> output.css -foo { - test-37: interpolant>interpolant; - test-38: interpolant >interpolant; - test-39: interpolant> interpolant; - test-40: interpolant > interpolant; - test-41: interpolant>lschema_ritlp; - test-42: interpolant >lschema_ritlp; - test-43: interpolant> lschema_ritlp; - test-44: interpolant > lschema_ritlp; - test-45: interpolant>litlp_rschema; - test-46: interpolant >litlp_rschema; - test-47: interpolant> litlp_rschema; - test-48: interpolant > litlp_rschema; - test-49: lschema_ritlp>lschema_ritlp; - test-50: lschema_ritlp >lschema_ritlp; - test-51: lschema_ritlp> lschema_ritlp; - test-52: lschema_ritlp > lschema_ritlp; - test-53: lschema_ritlp>litlp_rschema; - test-54: lschema_ritlp >litlp_rschema; - test-55: lschema_ritlp> litlp_rschema; - test-56: lschema_ritlp > litlp_rschema; - test-57: litlp_rschema>litlp_rschema; - test-58: litlp_rschema >litlp_rschema; - test-59: litlp_rschema> litlp_rschema; - test-60: litlp_rschema > litlp_rschema; -} - -<===> warning -DEPRECATION WARNING on line 2 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant>interpolant") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 3 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant >interpolant") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 4 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant> interpolant") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 5 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant > interpolant") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 6 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant>lschema_ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 7 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant >lschema_ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 8 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant> lschema_ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 9 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant > lschema_ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 10 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant>litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 11 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant >litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 12 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant> litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 13 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant > litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 14 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("lschema_ritlp>lschema_ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 15 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("lschema_ritlp >lschema_ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 16 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("lschema_ritlp> lschema_ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 17 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("lschema_ritlp > lschema_ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 18 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("lschema_ritlp>litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 19 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("lschema_ritlp >litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 20 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("lschema_ritlp> litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 21 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("lschema_ritlp > litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 22 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("litlp_rschema>litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 23 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("litlp_rschema >litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 24 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("litlp_rschema> litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 25 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("litlp_rschema > litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. diff --git a/spec/parser/operations/logic_le/numbers/pairs.hrx b/spec/parser/operations/logic_le/numbers/pairs.hrx deleted file mode 100644 index 4168d33f1d..0000000000 --- a/spec/parser/operations/logic_le/numbers/pairs.hrx +++ /dev/null @@ -1,382 +0,0 @@ -<===> options.yml ---- -:end_version: '3.5' -:warning_todo: -- libsass - -<===> input.scss -foo { - test-1: 10<=10; - test-2: 10 <=10; - test-3: 10<= 10; - test-4: 10 <= 10; - test-5: 10<=#{10}; - test-6: 10 <=#{10}; - test-7: 10<= #{10}; - test-8: 10 <= #{10}; - test-9: 10<=1#{0}; - test-10: 10 <=1#{0}; - test-11: 10<= 1#{0}; - test-12: 10 <= 1#{0}; - test-13: 10<=#{1}0; - test-14: 10 <=#{1}0; - test-15: 10<= #{1}0; - test-16: 10 <= #{1}0; - test-17: #{10}<=#{10}; - test-18: #{10} <=#{10}; - test-19: #{10}<= #{10}; - test-20: #{10} <= #{10}; - test-21: #{10}<=1#{0}; - test-22: #{10} <=1#{0}; - test-23: #{10}<= 1#{0}; - test-24: #{10} <= 1#{0}; - test-25: #{10}<=#{1}0; - test-26: #{10} <=#{1}0; - test-27: #{10}<= #{1}0; - test-28: #{10} <= #{1}0; - test-29: 1#{0}<=1#{0}; - test-30: 1#{0} <=1#{0}; - test-31: 1#{0}<= 1#{0}; - test-32: 1#{0} <= 1#{0}; - test-33: 1#{0}<=#{1}0; - test-34: 1#{0} <=#{1}0; - test-35: 1#{0}<= #{1}0; - test-36: 1#{0} <= #{1}0; - test-37: #{1}0<=#{1}0; - test-38: #{1}0 <=#{1}0; - test-39: #{1}0<= #{1}0; - test-40: #{1}0 <= #{1}0; -} - -<===> output.css -foo { - test-1: true; - test-2: true; - test-3: true; - test-4: true; - test-5: 10<=10; - test-6: 10 <=10; - test-7: 10<= 10; - test-8: 10 <= 10; - test-9: false0; - test-10: false0; - test-11: false0; - test-12: false0; - test-13: 10<=10; - test-14: 10 <=10; - test-15: 10<= 10; - test-16: 10 <= 10; - test-17: 10<=10; - test-18: 10 <=10; - test-19: 10<= 10; - test-20: 10 <= 10; - test-21: 10<=10; - test-22: 10 <=10; - test-23: 10<= 10; - test-24: 10 <= 10; - test-25: 10<=10; - test-26: 10 <=10; - test-27: 10<= 10; - test-28: 10 <= 10; - test-29: 10<=10; - test-30: 10 <=10; - test-31: 10<= 10; - test-32: 10 <= 10; - test-33: 10<=10; - test-34: 10 <=10; - test-35: 10<= 10; - test-36: 10 <= 10; - test-37: 10<=10; - test-38: 10 <=10; - test-39: 10<= 10; - test-40: 10 <= 10; -} - -<===> warning -DEPRECATION WARNING on line 6 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10<=10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 7 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 <=10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 8 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10<= 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 9 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 <= 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 10 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 <= 1}0") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 11 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 <= 1}0") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 12 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 <= 1}0") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 13 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 <= 1}0") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 14 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10<=10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 15 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 <=10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 16 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10<= 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 17 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 <= 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 18 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10<=10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 19 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 <=10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 20 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10<= 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 21 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 <= 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 22 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10<=10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 23 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 <=10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 24 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10<= 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 25 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 <= 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 26 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10<=10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 27 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 <=10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 28 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10<= 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 29 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 <= 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 30 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10<=10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 31 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 <=10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 32 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10<= 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 33 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 <= 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 34 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10<=10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 35 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 <=10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 36 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10<= 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 37 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 <= 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 38 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10<=10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 39 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 <=10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 40 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10<= 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 41 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 <= 10") - -You can use the sass-convert command to automatically fix most cases. diff --git a/spec/parser/operations/logic_le/strings/pairs.hrx b/spec/parser/operations/logic_le/strings/pairs.hrx deleted file mode 100644 index 4f0b25fb57..0000000000 --- a/spec/parser/operations/logic_le/strings/pairs.hrx +++ /dev/null @@ -1,254 +0,0 @@ -<===> options.yml ---- -:end_version: '3.5' -:warning_todo: -- libsass - -<===> input.scss -foo { - test-37: #{interpolant}<=#{interpolant}; - test-38: #{interpolant} <=#{interpolant}; - test-39: #{interpolant}<= #{interpolant}; - test-40: #{interpolant} <= #{interpolant}; - test-41: #{interpolant}<=lschema_#{ritlp}; - test-42: #{interpolant} <=lschema_#{ritlp}; - test-43: #{interpolant}<= lschema_#{ritlp}; - test-44: #{interpolant} <= lschema_#{ritlp}; - test-45: #{interpolant}<=#{litlp}_rschema; - test-46: #{interpolant} <=#{litlp}_rschema; - test-47: #{interpolant}<= #{litlp}_rschema; - test-48: #{interpolant} <= #{litlp}_rschema; - test-49: lschema_#{ritlp}<=lschema_#{ritlp}; - test-50: lschema_#{ritlp} <=lschema_#{ritlp}; - test-51: lschema_#{ritlp}<= lschema_#{ritlp}; - test-52: lschema_#{ritlp} <= lschema_#{ritlp}; - test-53: lschema_#{ritlp}<=#{litlp}_rschema; - test-54: lschema_#{ritlp} <=#{litlp}_rschema; - test-55: lschema_#{ritlp}<= #{litlp}_rschema; - test-56: lschema_#{ritlp} <= #{litlp}_rschema; - test-57: #{litlp}_rschema<=#{litlp}_rschema; - test-58: #{litlp}_rschema <=#{litlp}_rschema; - test-59: #{litlp}_rschema<= #{litlp}_rschema; - test-60: #{litlp}_rschema <= #{litlp}_rschema; -} - -<===> output.css -foo { - test-37: interpolant<=interpolant; - test-38: interpolant <=interpolant; - test-39: interpolant<= interpolant; - test-40: interpolant <= interpolant; - test-41: interpolant<=lschema_ritlp; - test-42: interpolant <=lschema_ritlp; - test-43: interpolant<= lschema_ritlp; - test-44: interpolant <= lschema_ritlp; - test-45: interpolant<=litlp_rschema; - test-46: interpolant <=litlp_rschema; - test-47: interpolant<= litlp_rschema; - test-48: interpolant <= litlp_rschema; - test-49: lschema_ritlp<=lschema_ritlp; - test-50: lschema_ritlp <=lschema_ritlp; - test-51: lschema_ritlp<= lschema_ritlp; - test-52: lschema_ritlp <= lschema_ritlp; - test-53: lschema_ritlp<=litlp_rschema; - test-54: lschema_ritlp <=litlp_rschema; - test-55: lschema_ritlp<= litlp_rschema; - test-56: lschema_ritlp <= litlp_rschema; - test-57: litlp_rschema<=litlp_rschema; - test-58: litlp_rschema <=litlp_rschema; - test-59: litlp_rschema<= litlp_rschema; - test-60: litlp_rschema <= litlp_rschema; -} - -<===> warning -DEPRECATION WARNING on line 2 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant<=interpolant") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 3 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant <=interpolant") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 4 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant<= interpolant") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 5 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant <= interpolant") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 6 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant<=lschema_ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 7 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant <=lschema_ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 8 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant<= lschema_ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 9 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant <= lschema_ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 10 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant<=litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 11 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant <=litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 12 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant<= litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 13 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant <= litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 14 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("lschema_ritlp<=lschema_ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 15 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("lschema_ritlp <=lschema_ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 16 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("lschema_ritlp<= lschema_ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 17 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("lschema_ritlp <= lschema_ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 18 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("lschema_ritlp<=litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 19 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("lschema_ritlp <=litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 20 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("lschema_ritlp<= litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 21 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("lschema_ritlp <= litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 22 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("litlp_rschema<=litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 23 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("litlp_rschema <=litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 24 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("litlp_rschema<= litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 25 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("litlp_rschema <= litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. diff --git a/spec/parser/operations/logic_lt/numbers/pairs.hrx b/spec/parser/operations/logic_lt/numbers/pairs.hrx deleted file mode 100644 index 17956fc3db..0000000000 --- a/spec/parser/operations/logic_lt/numbers/pairs.hrx +++ /dev/null @@ -1,382 +0,0 @@ -<===> options.yml ---- -:end_version: '3.5' -:warning_todo: -- libsass - -<===> input.scss -foo { - test-1: 10<10; - test-2: 10 <10; - test-3: 10< 10; - test-4: 10 < 10; - test-5: 10<#{10}; - test-6: 10 <#{10}; - test-7: 10< #{10}; - test-8: 10 < #{10}; - test-9: 10<1#{0}; - test-10: 10 <1#{0}; - test-11: 10< 1#{0}; - test-12: 10 < 1#{0}; - test-13: 10<#{1}0; - test-14: 10 <#{1}0; - test-15: 10< #{1}0; - test-16: 10 < #{1}0; - test-17: #{10}<#{10}; - test-18: #{10} <#{10}; - test-19: #{10}< #{10}; - test-20: #{10} < #{10}; - test-21: #{10}<1#{0}; - test-22: #{10} <1#{0}; - test-23: #{10}< 1#{0}; - test-24: #{10} < 1#{0}; - test-25: #{10}<#{1}0; - test-26: #{10} <#{1}0; - test-27: #{10}< #{1}0; - test-28: #{10} < #{1}0; - test-29: 1#{0}<1#{0}; - test-30: 1#{0} <1#{0}; - test-31: 1#{0}< 1#{0}; - test-32: 1#{0} < 1#{0}; - test-33: 1#{0}<#{1}0; - test-34: 1#{0} <#{1}0; - test-35: 1#{0}< #{1}0; - test-36: 1#{0} < #{1}0; - test-37: #{1}0<#{1}0; - test-38: #{1}0 <#{1}0; - test-39: #{1}0< #{1}0; - test-40: #{1}0 < #{1}0; -} - -<===> output.css -foo { - test-1: false; - test-2: false; - test-3: false; - test-4: false; - test-5: 10<10; - test-6: 10 <10; - test-7: 10< 10; - test-8: 10 < 10; - test-9: false0; - test-10: false0; - test-11: false0; - test-12: false0; - test-13: 10<10; - test-14: 10 <10; - test-15: 10< 10; - test-16: 10 < 10; - test-17: 10<10; - test-18: 10 <10; - test-19: 10< 10; - test-20: 10 < 10; - test-21: 10<10; - test-22: 10 <10; - test-23: 10< 10; - test-24: 10 < 10; - test-25: 10<10; - test-26: 10 <10; - test-27: 10< 10; - test-28: 10 < 10; - test-29: 10<10; - test-30: 10 <10; - test-31: 10< 10; - test-32: 10 < 10; - test-33: 10<10; - test-34: 10 <10; - test-35: 10< 10; - test-36: 10 < 10; - test-37: 10<10; - test-38: 10 <10; - test-39: 10< 10; - test-40: 10 < 10; -} - -<===> warning -DEPRECATION WARNING on line 6 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10<10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 7 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 <10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 8 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10< 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 9 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 < 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 10 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 < 1}0") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 11 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 < 1}0") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 12 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 < 1}0") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 13 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 < 1}0") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 14 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10<10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 15 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 <10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 16 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10< 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 17 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 < 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 18 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10<10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 19 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 <10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 20 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10< 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 21 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 < 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 22 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10<10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 23 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 <10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 24 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10< 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 25 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 < 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 26 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10<10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 27 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 <10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 28 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10< 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 29 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 < 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 30 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10<10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 31 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 <10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 32 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10< 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 33 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 < 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 34 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10<10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 35 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 <10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 36 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10< 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 37 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 < 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 38 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10<10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 39 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 <10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 40 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10< 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 41 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 < 10") - -You can use the sass-convert command to automatically fix most cases. diff --git a/spec/parser/operations/logic_lt/strings/pairs.hrx b/spec/parser/operations/logic_lt/strings/pairs.hrx deleted file mode 100644 index 242b332ae6..0000000000 --- a/spec/parser/operations/logic_lt/strings/pairs.hrx +++ /dev/null @@ -1,254 +0,0 @@ -<===> options.yml ---- -:end_version: '3.5' -:warning_todo: -- libsass - -<===> input.scss -foo { - test-37: #{interpolant}<#{interpolant}; - test-38: #{interpolant} <#{interpolant}; - test-39: #{interpolant}< #{interpolant}; - test-40: #{interpolant} < #{interpolant}; - test-41: #{interpolant} output.css -foo { - test-37: interpolant warning -DEPRECATION WARNING on line 2 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant options.yml ---- -:warning_todo: -- libsass -:end_version: '3.5' - -<===> input.scss -foo { - test-1: 10!=10; - test-2: 10 !=10; - test-3: 10!= 10; - test-4: 10 != 10; - test-5: 10!=10px; - test-6: 10 !=10px; - test-7: 10!= 10px; - test-8: 10 != 10px; - test-9: 10!=#{10}px; - test-10: 10 !=#{10}px; - test-11: 10!= #{10}px; - test-12: 10 != #{10}px; - test-13: 10!=1#{0}px; - test-14: 10 !=1#{0}px; - test-15: 10!= 1#{0}px; - test-16: 10 != 1#{0}px; - test-17: 10!=10#{px}; - test-18: 10 !=10#{px}; - test-19: 10!= 10#{px}; - test-20: 10 != 10#{px}; - test-21: 10!=10#{p}x; - test-22: 10 !=10#{p}x; - test-23: 10!= 10#{p}x; - test-24: 10 != 10#{p}x; - test-25: 10px!=10px; - test-26: 10px !=10px; - test-27: 10px!= 10px; - test-28: 10px != 10px; - test-29: 10px!=#{10}px; - test-30: 10px !=#{10}px; - test-31: 10px!= #{10}px; - test-32: 10px != #{10}px; - test-33: 10px!=1#{0}px; - test-34: 10px !=1#{0}px; - test-35: 10px!= 1#{0}px; - test-36: 10px != 1#{0}px; - test-37: 10px!=10#{px}; - test-38: 10px !=10#{px}; - test-39: 10px!= 10#{px}; - test-40: 10px != 10#{px}; - test-41: 10px!=10#{p}x; - test-42: 10px !=10#{p}x; - test-43: 10px!= 10#{p}x; - test-44: 10px != 10#{p}x; - test-45: #{10}px!=#{10}px; - test-46: #{10}px !=#{10}px; - test-47: #{10}px!= #{10}px; - test-48: #{10}px != #{10}px; - test-49: #{10}px!=1#{0}px; - test-50: #{10}px !=1#{0}px; - test-51: #{10}px!= 1#{0}px; - test-52: #{10}px != 1#{0}px; - test-53: #{10}px!=10#{px}; - test-54: #{10}px !=10#{px}; - test-55: #{10}px!= 10#{px}; - test-56: #{10}px != 10#{px}; - test-57: #{10}px!=10#{p}x; - test-58: #{10}px !=10#{p}x; - test-59: #{10}px!= 10#{p}x; - test-60: #{10}px != 10#{p}x; - test-61: 1#{0}px!=1#{0}px; - test-62: 1#{0}px !=1#{0}px; - test-63: 1#{0}px!= 1#{0}px; - test-64: 1#{0}px != 1#{0}px; - test-65: 1#{0}px!=10#{px}; - test-66: 1#{0}px !=10#{px}; - test-67: 1#{0}px!= 10#{px}; - test-68: 1#{0}px != 10#{px}; - test-69: 1#{0}px!=10#{p}x; - test-70: 1#{0}px !=10#{p}x; - test-71: 1#{0}px!= 10#{p}x; - test-72: 1#{0}px != 10#{p}x; - test-73: 10#{px}!=10#{px}; - test-74: 10#{px} !=10#{px}; - test-75: 10#{px}!= 10#{px}; - test-76: 10#{px} != 10#{px}; - test-77: 10#{px}!=10#{p}x; - test-78: 10#{px} !=10#{p}x; - test-79: 10#{px}!= 10#{p}x; - test-80: 10#{px} != 10#{p}x; - test-81: 10#{p}x!=10#{p}x; - test-82: 10#{p}x !=10#{p}x; - test-83: 10#{p}x!= 10#{p}x; - test-84: 10#{p}x != 10#{p}x; -} - -<===> output.css -foo { - test-1: false; - test-2: false; - test-3: false; - test-4: false; - test-5: false; - test-6: false; - test-7: false; - test-8: false; - test-9: 10!=10px; - test-10: 10 !=10px; - test-11: 10!= 10px; - test-12: 10 != 10px; - test-13: true0px; - test-14: true0px; - test-15: true0px; - test-16: true0px; - test-17: falsepx; - test-18: falsepx; - test-19: falsepx; - test-20: falsepx; - test-21: falsepx; - test-22: falsepx; - test-23: falsepx; - test-24: falsepx; - test-25: false; - test-26: false; - test-27: false; - test-28: false; - test-29: 10px!=10px; - test-30: 10px !=10px; - test-31: 10px!= 10px; - test-32: 10px != 10px; - test-33: true0px; - test-34: true0px; - test-35: true0px; - test-36: true0px; - test-37: falsepx; - test-38: falsepx; - test-39: falsepx; - test-40: falsepx; - test-41: falsepx; - test-42: falsepx; - test-43: falsepx; - test-44: falsepx; - test-45: 10px!=10px; - test-46: 10px !=10px; - test-47: 10px!= 10px; - test-48: 10px != 10px; - test-49: 10true0px; - test-50: 10true0px; - test-51: 10true0px; - test-52: 10true0px; - test-53: 10truepx; - test-54: 10truepx; - test-55: 10truepx; - test-56: 10truepx; - test-57: 10truepx; - test-58: 10truepx; - test-59: 10truepx; - test-60: 10truepx; - test-61: 10true0px; - test-62: 10true0px; - test-63: 10true0px; - test-64: 10true0px; - test-65: 10truepx; - test-66: 10truepx; - test-67: 10truepx; - test-68: 10truepx; - test-69: 10truepx; - test-70: 10truepx; - test-71: 10truepx; - test-72: 10truepx; - test-73: 10px!=10px; - test-74: 10px !=10px; - test-75: 10px!= 10px; - test-76: 10px != 10px; - test-77: 10px!=10px; - test-78: 10px !=10px; - test-79: 10px!= 10px; - test-80: 10px != 10px; - test-81: 10ptruepx; - test-82: 10ptruepx; - test-83: 10ptruepx; - test-84: 10ptruepx; -} - -<===> warning -DEPRECATION WARNING on line 10 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10!=10px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 11 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 !=10px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 12 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10!= 10px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 13 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 != 10px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 14 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 != 1}0px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 15 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 != 1}0px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 16 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 != 1}0px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 17 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 != 1}0px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 18 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 != 10}px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 19 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 != 10}px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 20 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 != 10}px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 21 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 != 10}px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 22 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 != 10}px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 23 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 != 10}px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 24 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 != 10}px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 25 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 != 10}px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 30 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10px!=10px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 31 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10px !=10px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 32 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10px!= 10px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 33 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10px != 10px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 34 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10px != 1}0px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 35 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10px != 1}0px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 36 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10px != 1}0px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 37 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10px != 1}0px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 38 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10px != 10}px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 39 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10px != 10}px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 40 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10px != 10}px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 41 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10px != 10}px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 42 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10px != 10}px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 43 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10px != 10}px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 44 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10px != 10}px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 45 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10px != 10}px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 46 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10px!=10px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 47 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10px !=10px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 48 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10px!= 10px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 49 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10px != 10px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 74 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10px!=10px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 75 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10px !=10px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 76 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10px!= 10px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 77 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10px != 10px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 78 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10px!=10px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 79 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10px !=10px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 80 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10px!= 10px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 81 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10px != 10px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 6 of input.scss: -The result of `10 != 10px` will be `true` in future releases of Sass. -Unitless numbers will no longer be equal to the same numbers with units. - -DEPRECATION WARNING on line 7 of input.scss: -The result of `10 != 10px` will be `true` in future releases of Sass. -Unitless numbers will no longer be equal to the same numbers with units. - -DEPRECATION WARNING on line 8 of input.scss: -The result of `10 != 10px` will be `true` in future releases of Sass. -Unitless numbers will no longer be equal to the same numbers with units. - -DEPRECATION WARNING on line 9 of input.scss: -The result of `10 != 10px` will be `true` in future releases of Sass. -Unitless numbers will no longer be equal to the same numbers with units. - -DEPRECATION WARNING on line 38 of input.scss: -The result of `10px != 10` will be `true` in future releases of Sass. -Unitless numbers will no longer be equal to the same numbers with units. - -DEPRECATION WARNING on line 39 of input.scss: -The result of `10px != 10` will be `true` in future releases of Sass. -Unitless numbers will no longer be equal to the same numbers with units. - -DEPRECATION WARNING on line 40 of input.scss: -The result of `10px != 10` will be `true` in future releases of Sass. -Unitless numbers will no longer be equal to the same numbers with units. - -DEPRECATION WARNING on line 41 of input.scss: -The result of `10px != 10` will be `true` in future releases of Sass. -Unitless numbers will no longer be equal to the same numbers with units. - -DEPRECATION WARNING on line 42 of input.scss: -The result of `10px != 10` will be `true` in future releases of Sass. -Unitless numbers will no longer be equal to the same numbers with units. - -DEPRECATION WARNING on line 43 of input.scss: -The result of `10px != 10` will be `true` in future releases of Sass. -Unitless numbers will no longer be equal to the same numbers with units. - -DEPRECATION WARNING on line 44 of input.scss: -The result of `10px != 10` will be `true` in future releases of Sass. -Unitless numbers will no longer be equal to the same numbers with units. - -DEPRECATION WARNING on line 45 of input.scss: -The result of `10px != 10` will be `true` in future releases of Sass. -Unitless numbers will no longer be equal to the same numbers with units. diff --git a/spec/parser/operations/logic_ne/mixed/pairs-4.0.hrx b/spec/parser/operations/logic_ne/mixed/pairs-4.0.hrx index 6b308b2337..0a989b698c 100644 --- a/spec/parser/operations/logic_ne/mixed/pairs-4.0.hrx +++ b/spec/parser/operations/logic_ne/mixed/pairs-4.0.hrx @@ -2,7 +2,6 @@ --- :todo: - libsass -:start_version: '4.0' :todo: - libsass diff --git a/spec/parser/operations/logic_ne/mixed/pairs.hrx b/spec/parser/operations/logic_ne/mixed/pairs.hrx deleted file mode 100644 index 337689aa39..0000000000 --- a/spec/parser/operations/logic_ne/mixed/pairs.hrx +++ /dev/null @@ -1,326 +0,0 @@ -<===> options.yml ---- -:warning_todo: -- libsass -:end_version: '3.5' - -<===> input.scss -foo { - test-1: 10!=10; - test-2: 10 !=10; - test-3: 10!= 10; - test-4: 10 != 10; - test-5: 10!=10%; - test-6: 10 !=10%; - test-7: 10!= 10%; - test-8: 10 != 10%; - test-9: 10!=10px; - test-10: 10 !=10px; - test-11: 10!= 10px; - test-12: 10 != 10px; - test-13: 10!=#AAA; - test-14: 10 !=#AAA; - test-15: 10!= #AAA; - test-16: 10 != #AAA; - test-17: 10!=#{itpl}; - test-18: 10 !=#{itpl}; - test-19: 10!= #{itpl}; - test-20: 10 != #{itpl}; - test-21: 10%!=10%; - test-22: 10% !=10%; - test-23: 10%!= 10%; - test-24: 10% != 10%; - test-25: 10%!=10px; - test-26: 10% !=10px; - test-27: 10%!= 10px; - test-28: 10% != 10px; - test-29: 10%!=#AAA; - test-30: 10% !=#AAA; - test-31: 10%!= #AAA; - test-32: 10% != #AAA; - test-33: 10%!=#{itpl}; - test-34: 10% !=#{itpl}; - test-35: 10%!= #{itpl}; - test-36: 10% != #{itpl}; - test-37: 10px!=10px; - test-38: 10px !=10px; - test-39: 10px!= 10px; - test-40: 10px != 10px; - test-41: 10px!=#AAA; - test-42: 10px !=#AAA; - test-43: 10px!= #AAA; - test-44: 10px != #AAA; - test-45: 10px!=#{itpl}; - test-46: 10px !=#{itpl}; - test-47: 10px!= #{itpl}; - test-48: 10px != #{itpl}; - test-49: #AAA!=#AAA; - test-50: #AAA !=#AAA; - test-51: #AAA!= #AAA; - test-52: #AAA != #AAA; - test-53: #AAA!=#{itpl}; - test-54: #AAA !=#{itpl}; - test-55: #AAA!= #{itpl}; - test-56: #AAA != #{itpl}; - test-57: #{itpl}!=#{itpl}; - test-58: #{itpl} !=#{itpl}; - test-59: #{itpl}!= #{itpl}; - test-60: #{itpl} != #{itpl}; -} - -<===> output.css -foo { - test-1: false; - test-2: false; - test-3: false; - test-4: false; - test-5: false; - test-6: false; - test-7: false; - test-8: false; - test-9: false; - test-10: false; - test-11: false; - test-12: false; - test-13: true; - test-14: true; - test-15: true; - test-16: true; - test-17: 10!=itpl; - test-18: 10 !=itpl; - test-19: 10!= itpl; - test-20: 10 != itpl; - test-21: false; - test-22: false; - test-23: false; - test-24: false; - test-25: true; - test-26: true; - test-27: true; - test-28: true; - test-29: true; - test-30: true; - test-31: true; - test-32: true; - test-33: 10%!=itpl; - test-34: 10% !=itpl; - test-35: 10%!= itpl; - test-36: 10% != itpl; - test-37: false; - test-38: false; - test-39: false; - test-40: false; - test-41: true; - test-42: true; - test-43: true; - test-44: true; - test-45: 10px!=itpl; - test-46: 10px !=itpl; - test-47: 10px!= itpl; - test-48: 10px != itpl; - test-49: false; - test-50: false; - test-51: false; - test-52: false; - test-53: #AAA!=itpl; - test-54: #AAA !=itpl; - test-55: #AAA!= itpl; - test-56: #AAA != itpl; - test-57: itpl!=itpl; - test-58: itpl !=itpl; - test-59: itpl!= itpl; - test-60: itpl != itpl; -} - -<===> warning -DEPRECATION WARNING on line 18 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10!=itpl") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 19 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 !=itpl") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 20 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10!= itpl") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 21 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 != itpl") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 34 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10%!=itpl") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 35 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10% !=itpl") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 36 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10%!= itpl") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 37 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10% != itpl") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 46 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10px!=itpl") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 47 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10px !=itpl") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 48 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10px!= itpl") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 49 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10px != itpl") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 54 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#AAA!=itpl") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 55 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#AAA !=itpl") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 56 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#AAA!= itpl") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 57 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#AAA != itpl") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 58 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("itpl!=itpl") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 59 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("itpl !=itpl") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 60 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("itpl!= itpl") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 61 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("itpl != itpl") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 6 of input.scss: -The result of `10 != 10%` will be `true` in future releases of Sass. -Unitless numbers will no longer be equal to the same numbers with units. - -DEPRECATION WARNING on line 7 of input.scss: -The result of `10 != 10%` will be `true` in future releases of Sass. -Unitless numbers will no longer be equal to the same numbers with units. - -DEPRECATION WARNING on line 8 of input.scss: -The result of `10 != 10%` will be `true` in future releases of Sass. -Unitless numbers will no longer be equal to the same numbers with units. - -DEPRECATION WARNING on line 9 of input.scss: -The result of `10 != 10%` will be `true` in future releases of Sass. -Unitless numbers will no longer be equal to the same numbers with units. - -DEPRECATION WARNING on line 10 of input.scss: -The result of `10 != 10px` will be `true` in future releases of Sass. -Unitless numbers will no longer be equal to the same numbers with units. - -DEPRECATION WARNING on line 11 of input.scss: -The result of `10 != 10px` will be `true` in future releases of Sass. -Unitless numbers will no longer be equal to the same numbers with units. - -DEPRECATION WARNING on line 12 of input.scss: -The result of `10 != 10px` will be `true` in future releases of Sass. -Unitless numbers will no longer be equal to the same numbers with units. - -DEPRECATION WARNING on line 13 of input.scss: -The result of `10 != 10px` will be `true` in future releases of Sass. -Unitless numbers will no longer be equal to the same numbers with units. diff --git a/spec/parser/operations/logic_ne/numbers/pairs-4.0.hrx b/spec/parser/operations/logic_ne/numbers/pairs-4.0.hrx index 635976f03d..1daa30f862 100644 --- a/spec/parser/operations/logic_ne/numbers/pairs-4.0.hrx +++ b/spec/parser/operations/logic_ne/numbers/pairs-4.0.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: '4.0' :todo: - libsass diff --git a/spec/parser/operations/logic_ne/numbers/pairs.hrx b/spec/parser/operations/logic_ne/numbers/pairs.hrx deleted file mode 100644 index 71a8325dab..0000000000 --- a/spec/parser/operations/logic_ne/numbers/pairs.hrx +++ /dev/null @@ -1,382 +0,0 @@ -<===> options.yml ---- -:end_version: '3.5' -:warning_todo: -- libsass - -<===> input.scss -foo { - test-1: 10!=10; - test-2: 10 !=10; - test-3: 10!= 10; - test-4: 10 != 10; - test-5: 10!=#{10}; - test-6: 10 !=#{10}; - test-7: 10!= #{10}; - test-8: 10 != #{10}; - test-9: 10!=1#{0}; - test-10: 10 !=1#{0}; - test-11: 10!= 1#{0}; - test-12: 10 != 1#{0}; - test-13: 10!=#{1}0; - test-14: 10 !=#{1}0; - test-15: 10!= #{1}0; - test-16: 10 != #{1}0; - test-17: #{10}!=#{10}; - test-18: #{10} !=#{10}; - test-19: #{10}!= #{10}; - test-20: #{10} != #{10}; - test-21: #{10}!=1#{0}; - test-22: #{10} !=1#{0}; - test-23: #{10}!= 1#{0}; - test-24: #{10} != 1#{0}; - test-25: #{10}!=#{1}0; - test-26: #{10} !=#{1}0; - test-27: #{10}!= #{1}0; - test-28: #{10} != #{1}0; - test-29: 1#{0}!=1#{0}; - test-30: 1#{0} !=1#{0}; - test-31: 1#{0}!= 1#{0}; - test-32: 1#{0} != 1#{0}; - test-33: 1#{0}!=#{1}0; - test-34: 1#{0} !=#{1}0; - test-35: 1#{0}!= #{1}0; - test-36: 1#{0} != #{1}0; - test-37: #{1}0!=#{1}0; - test-38: #{1}0 !=#{1}0; - test-39: #{1}0!= #{1}0; - test-40: #{1}0 != #{1}0; -} - -<===> output.css -foo { - test-1: false; - test-2: false; - test-3: false; - test-4: false; - test-5: 10!=10; - test-6: 10 !=10; - test-7: 10!= 10; - test-8: 10 != 10; - test-9: true0; - test-10: true0; - test-11: true0; - test-12: true0; - test-13: 10!=10; - test-14: 10 !=10; - test-15: 10!= 10; - test-16: 10 != 10; - test-17: 10!=10; - test-18: 10 !=10; - test-19: 10!= 10; - test-20: 10 != 10; - test-21: 10!=10; - test-22: 10 !=10; - test-23: 10!= 10; - test-24: 10 != 10; - test-25: 10!=10; - test-26: 10 !=10; - test-27: 10!= 10; - test-28: 10 != 10; - test-29: 10!=10; - test-30: 10 !=10; - test-31: 10!= 10; - test-32: 10 != 10; - test-33: 10!=10; - test-34: 10 !=10; - test-35: 10!= 10; - test-36: 10 != 10; - test-37: 10!=10; - test-38: 10 !=10; - test-39: 10!= 10; - test-40: 10 != 10; -} - -<===> warning -DEPRECATION WARNING on line 6 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10!=10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 7 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 !=10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 8 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10!= 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 9 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 != 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 10 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 != 1}0") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 11 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 != 1}0") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 12 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 != 1}0") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 13 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 != 1}0") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 14 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10!=10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 15 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 !=10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 16 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10!= 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 17 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 != 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 18 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10!=10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 19 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 !=10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 20 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10!= 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 21 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 != 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 22 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10!=10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 23 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 !=10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 24 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10!= 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 25 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 != 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 26 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10!=10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 27 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 !=10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 28 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10!= 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 29 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 != 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 30 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10!=10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 31 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 !=10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 32 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10!= 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 33 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 != 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 34 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10!=10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 35 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 !=10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 36 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10!= 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 37 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 != 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 38 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10!=10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 39 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 !=10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 40 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10!= 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 41 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 != 10") - -You can use the sass-convert command to automatically fix most cases. diff --git a/spec/parser/operations/logic_ne/strings/pairs-4.0.hrx b/spec/parser/operations/logic_ne/strings/pairs-4.0.hrx index f878605e31..b63654d3ee 100644 --- a/spec/parser/operations/logic_ne/strings/pairs-4.0.hrx +++ b/spec/parser/operations/logic_ne/strings/pairs-4.0.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: '4.0' :todo: - libsass diff --git a/spec/parser/operations/logic_ne/strings/pairs.hrx b/spec/parser/operations/logic_ne/strings/pairs.hrx deleted file mode 100644 index 4c1a67b83a..0000000000 --- a/spec/parser/operations/logic_ne/strings/pairs.hrx +++ /dev/null @@ -1,518 +0,0 @@ -<===> options.yml ---- -:end_version: '3.5' -:warning_todo: -- libsass - -<===> input.scss -foo { - test-1: literal!=literal; - test-2: literal !=literal; - test-3: literal!= literal; - test-4: literal != literal; - test-5: literal!="quoted"; - test-6: literal !="quoted"; - test-7: literal!= "quoted"; - test-8: literal != "quoted"; - test-9: literal!=#{interpolant}; - test-10: literal !=#{interpolant}; - test-11: literal!= #{interpolant}; - test-12: literal != #{interpolant}; - test-13: literal!=lschema_#{ritlp}; - test-14: literal !=lschema_#{ritlp}; - test-15: literal!= lschema_#{ritlp}; - test-16: literal != lschema_#{ritlp}; - test-17: literal!=#{litlp}_rschema; - test-18: literal !=#{litlp}_rschema; - test-19: literal!= #{litlp}_rschema; - test-20: literal != #{litlp}_rschema; - test-21: "quoted"!="quoted"; - test-22: "quoted" !="quoted"; - test-23: "quoted"!= "quoted"; - test-24: "quoted" != "quoted"; - test-25: "quoted"!=#{interpolant}; - test-26: "quoted" !=#{interpolant}; - test-27: "quoted"!= #{interpolant}; - test-28: "quoted" != #{interpolant}; - test-29: "quoted"!=lschema_#{ritlp}; - test-30: "quoted" !=lschema_#{ritlp}; - test-31: "quoted"!= lschema_#{ritlp}; - test-32: "quoted" != lschema_#{ritlp}; - test-33: "quoted"!=#{litlp}_rschema; - test-34: "quoted" !=#{litlp}_rschema; - test-35: "quoted"!= #{litlp}_rschema; - test-36: "quoted" != #{litlp}_rschema; - test-37: #{interpolant}!=#{interpolant}; - test-38: #{interpolant} !=#{interpolant}; - test-39: #{interpolant}!= #{interpolant}; - test-40: #{interpolant} != #{interpolant}; - test-41: #{interpolant}!=lschema_#{ritlp}; - test-42: #{interpolant} !=lschema_#{ritlp}; - test-43: #{interpolant}!= lschema_#{ritlp}; - test-44: #{interpolant} != lschema_#{ritlp}; - test-45: #{interpolant}!=#{litlp}_rschema; - test-46: #{interpolant} !=#{litlp}_rschema; - test-47: #{interpolant}!= #{litlp}_rschema; - test-48: #{interpolant} != #{litlp}_rschema; - test-49: lschema_#{ritlp}!=lschema_#{ritlp}; - test-50: lschema_#{ritlp} !=lschema_#{ritlp}; - test-51: lschema_#{ritlp}!= lschema_#{ritlp}; - test-52: lschema_#{ritlp} != lschema_#{ritlp}; - test-53: lschema_#{ritlp}!=#{litlp}_rschema; - test-54: lschema_#{ritlp} !=#{litlp}_rschema; - test-55: lschema_#{ritlp}!= #{litlp}_rschema; - test-56: lschema_#{ritlp} != #{litlp}_rschema; - test-57: #{litlp}_rschema!=#{litlp}_rschema; - test-58: #{litlp}_rschema !=#{litlp}_rschema; - test-59: #{litlp}_rschema!= #{litlp}_rschema; - test-60: #{litlp}_rschema != #{litlp}_rschema; -} - -<===> output.css -foo { - test-1: false; - test-2: false; - test-3: false; - test-4: false; - test-5: true; - test-6: true; - test-7: true; - test-8: true; - test-9: literal!=interpolant; - test-10: literal !=interpolant; - test-11: literal!= interpolant; - test-12: literal != interpolant; - test-13: trueritlp; - test-14: trueritlp; - test-15: trueritlp; - test-16: trueritlp; - test-17: literal!=litlp_rschema; - test-18: literal !=litlp_rschema; - test-19: literal!= litlp_rschema; - test-20: literal != litlp_rschema; - test-21: false; - test-22: false; - test-23: false; - test-24: false; - test-25: "quoted"!=interpolant; - test-26: "quoted" !=interpolant; - test-27: "quoted"!= interpolant; - test-28: "quoted" != interpolant; - test-29: trueritlp; - test-30: trueritlp; - test-31: trueritlp; - test-32: trueritlp; - test-33: "quoted"!=litlp_rschema; - test-34: "quoted" !=litlp_rschema; - test-35: "quoted"!= litlp_rschema; - test-36: "quoted" != litlp_rschema; - test-37: interpolant!=interpolant; - test-38: interpolant !=interpolant; - test-39: interpolant!= interpolant; - test-40: interpolant != interpolant; - test-41: interpolant!=lschema_ritlp; - test-42: interpolant !=lschema_ritlp; - test-43: interpolant!= lschema_ritlp; - test-44: interpolant != lschema_ritlp; - test-45: interpolant!=litlp_rschema; - test-46: interpolant !=litlp_rschema; - test-47: interpolant!= litlp_rschema; - test-48: interpolant != litlp_rschema; - test-49: lschema_ritlp!=lschema_ritlp; - test-50: lschema_ritlp !=lschema_ritlp; - test-51: lschema_ritlp!= lschema_ritlp; - test-52: lschema_ritlp != lschema_ritlp; - test-53: lschema_ritlp!=litlp_rschema; - test-54: lschema_ritlp !=litlp_rschema; - test-55: lschema_ritlp!= litlp_rschema; - test-56: lschema_ritlp != litlp_rschema; - test-57: litlp_rschema!=litlp_rschema; - test-58: litlp_rschema !=litlp_rschema; - test-59: litlp_rschema!= litlp_rschema; - test-60: litlp_rschema != litlp_rschema; -} - -<===> warning -DEPRECATION WARNING on line 10 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("literal!=interpolant") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 11 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("literal !=interpolant") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 12 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("literal!= interpolant") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 13 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("literal != interpolant") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 14 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{literal != lschema_}ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 15 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{literal != lschema_}ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 16 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{literal != lschema_}ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 17 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{literal != lschema_}ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 18 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("literal!=litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 19 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("literal !=litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 20 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("literal!= litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 21 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("literal != litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 26 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote('"quoted"!=interpolant') - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 27 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote('"quoted" !=interpolant') - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 28 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote('"quoted"!= interpolant') - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 29 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote('"quoted" != interpolant') - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 30 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{"quoted" != lschema_}ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 31 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{"quoted" != lschema_}ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 32 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{"quoted" != lschema_}ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 33 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{"quoted" != lschema_}ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 34 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote('"quoted"!=litlp_rschema') - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 35 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote('"quoted" !=litlp_rschema') - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 36 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote('"quoted"!= litlp_rschema') - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 37 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote('"quoted" != litlp_rschema') - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 38 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant!=interpolant") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 39 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant !=interpolant") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 40 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant!= interpolant") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 41 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant != interpolant") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 42 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant!=lschema_ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 43 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant !=lschema_ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 44 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant!= lschema_ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 45 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant != lschema_ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 46 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant!=litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 47 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant !=litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 48 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant!= litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 49 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant != litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 50 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("lschema_ritlp!=lschema_ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 51 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("lschema_ritlp !=lschema_ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 52 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("lschema_ritlp!= lschema_ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 53 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("lschema_ritlp != lschema_ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 54 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("lschema_ritlp!=litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 55 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("lschema_ritlp !=litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 56 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("lschema_ritlp!= litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 57 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("lschema_ritlp != litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 58 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("litlp_rschema!=litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 59 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("litlp_rschema !=litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 60 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("litlp_rschema!= litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 61 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("litlp_rschema != litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. diff --git a/spec/parser/operations/modulo/numbers/pairs.hrx b/spec/parser/operations/modulo/numbers/pairs.hrx deleted file mode 100644 index be51c751d0..0000000000 --- a/spec/parser/operations/modulo/numbers/pairs.hrx +++ /dev/null @@ -1,318 +0,0 @@ -<===> options.yml ---- -:end_version: '3.5' -:warning_todo: -- libsass - -<===> input.scss -foo { - test-1: 10%10; - test-2: 10 %10; - test-3: 10% 10; - test-4: 10 % 10; - test-5: 10%#{10}; - test-6: 10 %#{10}; - test-7: 10% #{10}; - test-8: 10 % #{10}; - test-9: 10%1#{0}; - test-10: 10 %1#{0}; - test-11: 10% 1#{0}; - test-12: 10 % 1#{0}; - test-13: 10%#{1}0; - test-14: 10 %#{1}0; - test-15: 10% #{1}0; - test-16: 10 % #{1}0; - test-17: #{10}%#{10}; - test-18: #{10} %#{10}; - test-19: #{10}% #{10}; - test-20: #{10} % #{10}; - test-21: #{10}%1#{0}; - test-22: #{10} %1#{0}; - test-23: #{10}% 1#{0}; - test-24: #{10} % 1#{0}; - test-25: #{10}%#{1}0; - test-26: #{10} %#{1}0; - test-27: #{10}% #{1}0; - test-28: #{10} % #{1}0; - test-29: 1#{0}%1#{0}; - test-30: 1#{0} %1#{0}; - test-31: 1#{0}% 1#{0}; - test-32: 1#{0} % 1#{0}; - test-33: 1#{0}%#{1}0; - test-34: 1#{0} %#{1}0; - test-35: 1#{0}% #{1}0; - test-36: 1#{0} % #{1}0; - test-37: #{1}0%#{1}0; - test-38: #{1}0 %#{1}0; - test-39: #{1}0% #{1}0; - test-40: #{1}0 % #{1}0; -} - -<===> output.css -foo { - test-1: 10% 10; - test-2: 0; - test-3: 10% 10; - test-4: 0; - test-5: 10%10; - test-6: 10 %10; - test-7: 10% 10; - test-8: 10 % 10; - test-9: 10% 10; - test-10: 00; - test-11: 10% 10; - test-12: 00; - test-13: 10%10; - test-14: 10 %10; - test-15: 10% 10; - test-16: 10 % 10; - test-17: 10%10; - test-18: 10 %10; - test-19: 10% 10; - test-20: 10 % 10; - test-21: 10%10; - test-22: 10 %10; - test-23: 10% 10; - test-24: 10 % 10; - test-25: 10%10; - test-26: 10 %10; - test-27: 10% 10; - test-28: 10 % 10; - test-29: 10%10; - test-30: 10 %10; - test-31: 10% 10; - test-32: 10 % 10; - test-33: 10%10; - test-34: 10 %10; - test-35: 10% 10; - test-36: 10 % 10; - test-37: 10%10; - test-38: 10 %10; - test-39: 10% 10; - test-40: 10 % 10; -} - -<===> warning -DEPRECATION WARNING on line 7 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 %10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 9 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 % 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 11 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 % 1}0") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 13 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 % 1}0") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 15 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 %10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 17 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 % 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 18 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10%10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 19 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 %10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 20 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10% 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 21 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 % 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 22 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10%10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 23 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 %10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 24 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10% 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 25 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 % 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 26 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10%10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 27 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 %10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 28 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10% 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 29 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 % 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 30 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10%10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 31 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 %10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 32 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10% 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 33 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 % 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 34 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10%10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 35 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 %10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 36 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10% 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 37 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 % 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 39 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 %10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 41 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 % 10") - -You can use the sass-convert command to automatically fix most cases. diff --git a/spec/parser/operations/modulo/strings/pairs.hrx b/spec/parser/operations/modulo/strings/pairs.hrx deleted file mode 100644 index 4c2eb252d3..0000000000 --- a/spec/parser/operations/modulo/strings/pairs.hrx +++ /dev/null @@ -1,254 +0,0 @@ -<===> options.yml ---- -:end_version: '3.5' -:warning_todo: -- libsass - -<===> input.scss -foo { - test-37: #{interpolant}%#{interpolant}; - test-38: #{interpolant} %#{interpolant}; - test-39: #{interpolant}% #{interpolant}; - test-40: #{interpolant} % #{interpolant}; - test-41: #{interpolant}%lschema_#{ritlp}; - test-42: #{interpolant} %lschema_#{ritlp}; - test-43: #{interpolant}% lschema_#{ritlp}; - test-44: #{interpolant} % lschema_#{ritlp}; - test-45: #{interpolant}%#{litlp}_rschema; - test-46: #{interpolant} %#{litlp}_rschema; - test-47: #{interpolant}% #{litlp}_rschema; - test-48: #{interpolant} % #{litlp}_rschema; - test-49: lschema_#{ritlp}%lschema_#{ritlp}; - test-50: lschema_#{ritlp} %lschema_#{ritlp}; - test-51: lschema_#{ritlp}% lschema_#{ritlp}; - test-52: lschema_#{ritlp} % lschema_#{ritlp}; - test-53: lschema_#{ritlp}%#{litlp}_rschema; - test-54: lschema_#{ritlp} %#{litlp}_rschema; - test-55: lschema_#{ritlp}% #{litlp}_rschema; - test-56: lschema_#{ritlp} % #{litlp}_rschema; - test-57: #{litlp}_rschema%#{litlp}_rschema; - test-58: #{litlp}_rschema %#{litlp}_rschema; - test-59: #{litlp}_rschema% #{litlp}_rschema; - test-60: #{litlp}_rschema % #{litlp}_rschema; -} - -<===> output.css -foo { - test-37: interpolant%interpolant; - test-38: interpolant %interpolant; - test-39: interpolant% interpolant; - test-40: interpolant % interpolant; - test-41: interpolant%lschema_ritlp; - test-42: interpolant %lschema_ritlp; - test-43: interpolant% lschema_ritlp; - test-44: interpolant % lschema_ritlp; - test-45: interpolant%litlp_rschema; - test-46: interpolant %litlp_rschema; - test-47: interpolant% litlp_rschema; - test-48: interpolant % litlp_rschema; - test-49: lschema_ritlp%lschema_ritlp; - test-50: lschema_ritlp %lschema_ritlp; - test-51: lschema_ritlp% lschema_ritlp; - test-52: lschema_ritlp % lschema_ritlp; - test-53: lschema_ritlp%litlp_rschema; - test-54: lschema_ritlp %litlp_rschema; - test-55: lschema_ritlp% litlp_rschema; - test-56: lschema_ritlp % litlp_rschema; - test-57: litlp_rschema%litlp_rschema; - test-58: litlp_rschema %litlp_rschema; - test-59: litlp_rschema% litlp_rschema; - test-60: litlp_rschema % litlp_rschema; -} - -<===> warning -DEPRECATION WARNING on line 2 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant%interpolant") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 3 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant %interpolant") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 4 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant% interpolant") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 5 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant % interpolant") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 6 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant%lschema_ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 7 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant %lschema_ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 8 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant% lschema_ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 9 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant % lschema_ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 10 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant%litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 11 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant %litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 12 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant% litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 13 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant % litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 14 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("lschema_ritlp%lschema_ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 15 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("lschema_ritlp %lschema_ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 16 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("lschema_ritlp% lschema_ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 17 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("lschema_ritlp % lschema_ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 18 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("lschema_ritlp%litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 19 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("lschema_ritlp %litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 20 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("lschema_ritlp% litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 21 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("lschema_ritlp % litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 22 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("litlp_rschema%litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 23 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("litlp_rschema %litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 24 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("litlp_rschema% litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 25 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("litlp_rschema % litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. diff --git a/spec/parser/operations/multiply/numbers/pairs.hrx b/spec/parser/operations/multiply/numbers/pairs.hrx deleted file mode 100644 index 54fcb6f8ce..0000000000 --- a/spec/parser/operations/multiply/numbers/pairs.hrx +++ /dev/null @@ -1,382 +0,0 @@ -<===> options.yml ---- -:end_version: '3.5' -:warning_todo: -- libsass - -<===> input.scss -foo { - test-1: 10*10; - test-2: 10 *10; - test-3: 10* 10; - test-4: 10 * 10; - test-5: 10*#{10}; - test-6: 10 *#{10}; - test-7: 10* #{10}; - test-8: 10 * #{10}; - test-9: 10*1#{0}; - test-10: 10 *1#{0}; - test-11: 10* 1#{0}; - test-12: 10 * 1#{0}; - test-13: 10*#{1}0; - test-14: 10 *#{1}0; - test-15: 10* #{1}0; - test-16: 10 * #{1}0; - test-17: #{10}*#{10}; - test-18: #{10} *#{10}; - test-19: #{10}* #{10}; - test-20: #{10} * #{10}; - test-21: #{10}*1#{0}; - test-22: #{10} *1#{0}; - test-23: #{10}* 1#{0}; - test-24: #{10} * 1#{0}; - test-25: #{10}*#{1}0; - test-26: #{10} *#{1}0; - test-27: #{10}* #{1}0; - test-28: #{10} * #{1}0; - test-29: 1#{0}*1#{0}; - test-30: 1#{0} *1#{0}; - test-31: 1#{0}* 1#{0}; - test-32: 1#{0} * 1#{0}; - test-33: 1#{0}*#{1}0; - test-34: 1#{0} *#{1}0; - test-35: 1#{0}* #{1}0; - test-36: 1#{0} * #{1}0; - test-37: #{1}0*#{1}0; - test-38: #{1}0 *#{1}0; - test-39: #{1}0* #{1}0; - test-40: #{1}0 * #{1}0; -} - -<===> output.css -foo { - test-1: 100; - test-2: 100; - test-3: 100; - test-4: 100; - test-5: 10*10; - test-6: 10 *10; - test-7: 10* 10; - test-8: 10 * 10; - test-9: 100; - test-10: 100; - test-11: 100; - test-12: 100; - test-13: 10*10; - test-14: 10 *10; - test-15: 10* 10; - test-16: 10 * 10; - test-17: 10*10; - test-18: 10 *10; - test-19: 10* 10; - test-20: 10 * 10; - test-21: 10*10; - test-22: 10 *10; - test-23: 10* 10; - test-24: 10 * 10; - test-25: 10*10; - test-26: 10 *10; - test-27: 10* 10; - test-28: 10 * 10; - test-29: 10*10; - test-30: 10 *10; - test-31: 10* 10; - test-32: 10 * 10; - test-33: 10*10; - test-34: 10 *10; - test-35: 10* 10; - test-36: 10 * 10; - test-37: 10*10; - test-38: 10 *10; - test-39: 10* 10; - test-40: 10 * 10; -} - -<===> warning -DEPRECATION WARNING on line 6 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10*10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 7 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 *10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 8 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10* 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 9 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 * 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 10 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 * 1}0") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 11 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 * 1}0") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 12 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 * 1}0") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 13 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 * 1}0") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 14 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10*10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 15 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 *10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 16 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10* 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 17 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 * 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 18 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10*10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 19 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 *10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 20 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10* 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 21 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 * 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 22 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10*10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 23 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 *10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 24 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10* 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 25 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 * 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 26 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10*10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 27 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 *10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 28 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10* 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 29 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 * 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 30 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10*10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 31 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 *10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 32 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10* 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 33 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 * 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 34 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10*10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 35 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 *10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 36 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10* 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 37 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 * 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 38 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10*10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 39 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 *10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 40 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10* 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 41 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 * 10") - -You can use the sass-convert command to automatically fix most cases. diff --git a/spec/parser/operations/multiply/strings/pairs.hrx b/spec/parser/operations/multiply/strings/pairs.hrx deleted file mode 100644 index 6af2979f1e..0000000000 --- a/spec/parser/operations/multiply/strings/pairs.hrx +++ /dev/null @@ -1,254 +0,0 @@ -<===> options.yml ---- -:end_version: '3.5' -:warning_todo: -- libsass - -<===> input.scss -foo { - test-37: #{interpolant}*#{interpolant}; - test-38: #{interpolant} *#{interpolant}; - test-39: #{interpolant}* #{interpolant}; - test-40: #{interpolant} * #{interpolant}; - test-41: #{interpolant}*lschema_#{ritlp}; - test-42: #{interpolant} *lschema_#{ritlp}; - test-43: #{interpolant}* lschema_#{ritlp}; - test-44: #{interpolant} * lschema_#{ritlp}; - test-45: #{interpolant}*#{litlp}_rschema; - test-46: #{interpolant} *#{litlp}_rschema; - test-47: #{interpolant}* #{litlp}_rschema; - test-48: #{interpolant} * #{litlp}_rschema; - test-49: lschema_#{ritlp}*lschema_#{ritlp}; - test-50: lschema_#{ritlp} *lschema_#{ritlp}; - test-51: lschema_#{ritlp}* lschema_#{ritlp}; - test-52: lschema_#{ritlp} * lschema_#{ritlp}; - test-53: lschema_#{ritlp}*#{litlp}_rschema; - test-54: lschema_#{ritlp} *#{litlp}_rschema; - test-55: lschema_#{ritlp}* #{litlp}_rschema; - test-56: lschema_#{ritlp} * #{litlp}_rschema; - test-57: #{litlp}_rschema*#{litlp}_rschema; - test-58: #{litlp}_rschema *#{litlp}_rschema; - test-59: #{litlp}_rschema* #{litlp}_rschema; - test-60: #{litlp}_rschema * #{litlp}_rschema; -} - -<===> output.css -foo { - test-37: interpolant*interpolant; - test-38: interpolant *interpolant; - test-39: interpolant* interpolant; - test-40: interpolant * interpolant; - test-41: interpolant*lschema_ritlp; - test-42: interpolant *lschema_ritlp; - test-43: interpolant* lschema_ritlp; - test-44: interpolant * lschema_ritlp; - test-45: interpolant*litlp_rschema; - test-46: interpolant *litlp_rschema; - test-47: interpolant* litlp_rschema; - test-48: interpolant * litlp_rschema; - test-49: lschema_ritlp*lschema_ritlp; - test-50: lschema_ritlp *lschema_ritlp; - test-51: lschema_ritlp* lschema_ritlp; - test-52: lschema_ritlp * lschema_ritlp; - test-53: lschema_ritlp*litlp_rschema; - test-54: lschema_ritlp *litlp_rschema; - test-55: lschema_ritlp* litlp_rschema; - test-56: lschema_ritlp * litlp_rschema; - test-57: litlp_rschema*litlp_rschema; - test-58: litlp_rschema *litlp_rschema; - test-59: litlp_rschema* litlp_rschema; - test-60: litlp_rschema * litlp_rschema; -} - -<===> warning -DEPRECATION WARNING on line 2 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant*interpolant") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 3 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant *interpolant") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 4 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant* interpolant") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 5 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant * interpolant") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 6 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant*lschema_ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 7 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant *lschema_ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 8 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant* lschema_ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 9 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant * lschema_ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 10 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant*litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 11 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant *litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 12 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant* litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 13 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant * litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 14 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("lschema_ritlp*lschema_ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 15 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("lschema_ritlp *lschema_ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 16 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("lschema_ritlp* lschema_ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 17 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("lschema_ritlp * lschema_ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 18 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("lschema_ritlp*litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 19 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("lschema_ritlp *litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 20 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("lschema_ritlp* litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 21 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("lschema_ritlp * litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 22 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("litlp_rschema*litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 23 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("litlp_rschema *litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 24 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("litlp_rschema* litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 25 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("litlp_rschema * litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. diff --git a/spec/parser/operations/subtract/dimensions/pairs-4.0.hrx b/spec/parser/operations/subtract/dimensions/pairs-4.0.hrx index 6b41728546..bd40ddcbdc 100644 --- a/spec/parser/operations/subtract/dimensions/pairs-4.0.hrx +++ b/spec/parser/operations/subtract/dimensions/pairs-4.0.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: '4.0' :todo: - libsass diff --git a/spec/parser/operations/subtract/dimensions/pairs.hrx b/spec/parser/operations/subtract/dimensions/pairs.hrx deleted file mode 100644 index 286ba4ea65..0000000000 --- a/spec/parser/operations/subtract/dimensions/pairs.hrx +++ /dev/null @@ -1,350 +0,0 @@ -<===> options.yml ---- -:end_version: '3.5' -:warning_todo: -- libsass - -<===> input.scss -foo { - test-1: 10-10; - test-2: 10 -10; - test-3: 10- 10; - test-4: 10 - 10; - test-5: 10-10px; - test-6: 10 -10px; - test-7: 10- 10px; - test-8: 10 - 10px; - test-9: 10-#{10}px; - test-10: 10 -#{10}px; - test-11: 10- #{10}px; - test-12: 10 - #{10}px; - test-13: 10-1#{0}px; - test-14: 10 -1#{0}px; - test-15: 10- 1#{0}px; - test-16: 10 - 1#{0}px; - test-17: 10-10#{px}; - test-18: 10 -10#{px}; - test-19: 10- 10#{px}; - test-20: 10 - 10#{px}; - test-21: 10-10#{p}x; - test-22: 10 -10#{p}x; - test-23: 10- 10#{p}x; - test-24: 10 - 10#{p}x; - test-25: 10px-10px; - test-26: 10px -10px; - test-27: 10px- 10px; - test-28: 10px - 10px; - test-29: 10px-#{10}px; - test-30: 10px -#{10}px; - test-31: 10px- #{10}px; - test-32: 10px - #{10}px; - test-33: 10px-1#{0}px; - test-34: 10px -1#{0}px; - test-35: 10px- 1#{0}px; - test-36: 10px - 1#{0}px; - test-37: 10px-10#{px}; - test-38: 10px -10#{px}; - test-39: 10px- 10#{px}; - test-40: 10px - 10#{px}; - test-41: 10px-10#{p}x; - test-42: 10px -10#{p}x; - test-43: 10px- 10#{p}x; - test-44: 10px - 10#{p}x; - test-45: #{10}px-#{10}px; - test-46: #{10}px -#{10}px; - test-47: #{10}px- #{10}px; - test-48: #{10}px - #{10}px; - test-49: #{10}px-1#{0}px; - test-50: #{10}px -1#{0}px; - test-51: #{10}px- 1#{0}px; - test-52: #{10}px - 1#{0}px; - test-53: #{10}px-10#{px}; - test-54: #{10}px -10#{px}; - test-55: #{10}px- 10#{px}; - test-56: #{10}px - 10#{px}; - test-57: #{10}px-10#{p}x; - test-58: #{10}px -10#{p}x; - test-59: #{10}px- 10#{p}x; - test-60: #{10}px - 10#{p}x; - test-61: 1#{0}px-1#{0}px; - test-62: 1#{0}px -1#{0}px; - test-63: 1#{0}px- 1#{0}px; - test-64: 1#{0}px - 1#{0}px; - test-65: 1#{0}px-10#{px}; - test-66: 1#{0}px -10#{px}; - test-67: 1#{0}px- 10#{px}; - test-68: 1#{0}px - 10#{px}; - test-69: 1#{0}px-10#{p}x; - test-70: 1#{0}px -10#{p}x; - test-71: 1#{0}px- 10#{p}x; - test-72: 1#{0}px - 10#{p}x; - test-73: 10#{px}-10#{px}; - test-74: 10#{px} -10#{px}; - test-75: 10#{px}- 10#{px}; - test-76: 10#{px} - 10#{px}; - test-77: 10#{px}-10#{p}x; - test-78: 10#{px} -10#{p}x; - test-79: 10#{px}- 10#{p}x; - test-80: 10#{px} - 10#{p}x; - test-81: 10#{p}x-10#{p}x; - test-82: 10#{p}x -10#{p}x; - test-83: 10#{p}x- 10#{p}x; - test-84: 10#{p}x - 10#{p}x; -} - -<===> output.css -foo { - test-1: 0; - test-2: 10 -10; - test-3: 0; - test-4: 0; - test-5: 0px; - test-6: 10 -10px; - test-7: 0px; - test-8: 0px; - test-9: 10-10px; - test-10: 10 -10px; - test-11: 10- 10px; - test-12: 10 - 10px; - test-13: 90px; - test-14: 10 -10px; - test-15: 90px; - test-16: 90px; - test-17: 0px; - test-18: 10 -10px; - test-19: 0px; - test-20: 0px; - test-21: 0px; - test-22: 10 -10px; - test-23: 0px; - test-24: 0px; - test-25: 0px; - test-26: 10px -10px; - test-27: 10px- 10px; - test-28: 0px; - test-29: 10px-10px; - test-30: 10px -10px; - test-31: 10px- 10px; - test-32: 10px - 10px; - test-33: 9px0px; - test-34: 10px -10px; - test-35: 10px- 10px; - test-36: 9px0px; - test-37: 0pxpx; - test-38: 10px -10px; - test-39: 10px- 10px; - test-40: 0pxpx; - test-41: 0pxpx; - test-42: 10px -10px; - test-43: 10px- 10px; - test-44: 0pxpx; - test-45: 10px-10px; - test-46: 10px -10px; - test-47: 10px- 10px; - test-48: 10px - 10px; - test-49: 10px-10px; - test-50: 10px -10px; - test-51: 10px- 10px; - test-52: 10px-10px; - test-53: 10px-10px; - test-54: 10px -10px; - test-55: 10px- 10px; - test-56: 10px-10px; - test-57: 10px-10px; - test-58: 10px -10px; - test-59: 10px- 10px; - test-60: 10px-10px; - test-61: 10px-10px; - test-62: 10px -10px; - test-63: 10px- 10px; - test-64: 10px-10px; - test-65: 10px-10px; - test-66: 10px -10px; - test-67: 10px- 10px; - test-68: 10px-10px; - test-69: 10px-10px; - test-70: 10px -10px; - test-71: 10px- 10px; - test-72: 10px-10px; - test-73: 10px-10px; - test-74: 10px -10px; - test-75: 10px- 10px; - test-76: 10px - 10px; - test-77: 10px-10px; - test-78: 10px -10px; - test-79: 10px- 10px; - test-80: 10px - 10px; - test-81: 10px-10px; - test-82: 10px -10px; - test-83: 10px- 10px; - test-84: 10px-10px; -} - -<===> warning -DEPRECATION WARNING on line 12 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10- 10px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 13 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 - 10px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 14 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 - 1}0px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 16 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 - 1}0px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 17 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 - 1}0px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 18 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 - 10}px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 20 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 - 10}px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 21 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 - 10}px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 22 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 - 10}px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 24 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 - 10}px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 25 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 - 10}px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 33 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10px - 10px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 34 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10px - 1}0px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 37 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10px - 1}0px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 38 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10px - 10}px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 41 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10px - 10}px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 42 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10px - 10}px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 45 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10px - 10}px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 49 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10px - 10px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 77 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10px - 10px") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 81 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10px - 10px") - -You can use the sass-convert command to automatically fix most cases. diff --git a/spec/parser/operations/subtract/numbers/pairs-4.0.hrx b/spec/parser/operations/subtract/numbers/pairs-4.0.hrx index b433d4d478..350752779f 100644 --- a/spec/parser/operations/subtract/numbers/pairs-4.0.hrx +++ b/spec/parser/operations/subtract/numbers/pairs-4.0.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: '4.0' :todo: - libsass diff --git a/spec/parser/operations/subtract/numbers/pairs.hrx b/spec/parser/operations/subtract/numbers/pairs.hrx deleted file mode 100644 index d20a307a2f..0000000000 --- a/spec/parser/operations/subtract/numbers/pairs.hrx +++ /dev/null @@ -1,230 +0,0 @@ -<===> options.yml ---- -:end_version: '3.5' -:warning_todo: -- libsass - -<===> input.scss -foo { - test-1: 10-10; - test-2: 10 -10; - test-3: 10- 10; - test-4: 10 - 10; - test-5: 10-#{10}; - test-6: 10 -#{10}; - test-7: 10- #{10}; - test-8: 10 - #{10}; - test-9: 10-1#{0}; - test-10: 10 -1#{0}; - test-11: 10- 1#{0}; - test-12: 10 - 1#{0}; - test-13: 10-#{1}0; - test-14: 10 -#{1}0; - test-15: 10- #{1}0; - test-16: 10 - #{1}0; - test-17: #{10}-#{10}; - test-18: #{10} -#{10}; - test-19: #{10}- #{10}; - test-20: #{10} - #{10}; - test-21: #{10}-1#{0}; - test-22: #{10} -1#{0}; - test-23: #{10}- 1#{0}; - test-24: #{10} - 1#{0}; - test-25: #{10}-#{1}0; - test-26: #{10} -#{1}0; - test-27: #{10}- #{1}0; - test-28: #{10} - #{1}0; - test-29: 1#{0}-1#{0}; - test-30: 1#{0} -1#{0}; - test-31: 1#{0}- 1#{0}; - test-32: 1#{0} - 1#{0}; - test-33: 1#{0}-#{1}0; - test-34: 1#{0} -#{1}0; - test-35: 1#{0}- #{1}0; - test-36: 1#{0} - #{1}0; - test-37: #{1}0-#{1}0; - test-38: #{1}0 -#{1}0; - test-39: #{1}0- #{1}0; - test-40: #{1}0 - #{1}0; -} - -<===> output.css -foo { - test-1: 0; - test-2: 10 -10; - test-3: 0; - test-4: 0; - test-5: 10-10; - test-6: 10 -10; - test-7: 10- 10; - test-8: 10 - 10; - test-9: 90; - test-10: 10 -10; - test-11: 90; - test-12: 90; - test-13: 10-10; - test-14: 10 -10; - test-15: 10- 10; - test-16: 10 - 10; - test-17: 10-10; - test-18: 10 -10; - test-19: 10- 10; - test-20: 10 - 10; - test-21: 10-10; - test-22: 10 -10; - test-23: 10- 10; - test-24: 10 - 10; - test-25: 10-10; - test-26: 10 -10; - test-27: 10- 10; - test-28: 10 - 10; - test-29: 10-10; - test-30: 10 -10; - test-31: 10- 10; - test-32: 10 - 10; - test-33: 10-10; - test-34: 10 -10; - test-35: 10- 10; - test-36: 10 - 10; - test-37: 10-10; - test-38: 10 -10; - test-39: 10- 10; - test-40: 10 - 10; -} - -<===> warning -DEPRECATION WARNING on line 8 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10- 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 9 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 - 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 10 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 - 1}0") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 12 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 - 1}0") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 13 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{10 - 1}0") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 16 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10- 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 17 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 - 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 20 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10- 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 21 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 - 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 25 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 - 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 28 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10- 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 29 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 - 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 33 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 - 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 36 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10- 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 37 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 - 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 40 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10- 10") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 41 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("10 - 10") - -You can use the sass-convert command to automatically fix most cases. diff --git a/spec/parser/operations/subtract/strings/pairs-4.0.hrx b/spec/parser/operations/subtract/strings/pairs-4.0.hrx index 4a9069c13c..9bd02e4891 100644 --- a/spec/parser/operations/subtract/strings/pairs-4.0.hrx +++ b/spec/parser/operations/subtract/strings/pairs-4.0.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: '4.0' :todo: - libsass diff --git a/spec/parser/operations/subtract/strings/pairs.hrx b/spec/parser/operations/subtract/strings/pairs.hrx deleted file mode 100644 index 9464d8c82d..0000000000 --- a/spec/parser/operations/subtract/strings/pairs.hrx +++ /dev/null @@ -1,278 +0,0 @@ -<===> options.yml ---- -:end_version: '3.5' -:warning_todo: -- libsass - -<===> input.scss -foo { - test-1: literal-literal; - test-2: literal -literal; - test-3: literal- literal; - test-4: literal - literal; - test-5: literal-"quoted"; - test-6: literal -"quoted"; - test-7: literal- "quoted"; - test-8: literal - "quoted"; - test-9: literal-#{interpolant}; - test-10: literal -#{interpolant}; - test-11: literal- #{interpolant}; - test-12: literal - #{interpolant}; - test-13: literal-lschema_#{ritlp}; - test-14: literal -lschema_#{ritlp}; - test-15: literal- lschema_#{ritlp}; - test-16: literal - lschema_#{ritlp}; - test-17: literal-#{litlp}_rschema; - test-18: literal -#{litlp}_rschema; - test-19: literal- #{litlp}_rschema; - test-20: literal - #{litlp}_rschema; - test-21: "quoted"-"quoted"; - test-22: "quoted" -"quoted"; - test-23: "quoted"- "quoted"; - test-24: "quoted" - "quoted"; - test-25: "quoted"-#{interpolant}; - test-26: "quoted" -#{interpolant}; - test-27: "quoted"- #{interpolant}; - test-28: "quoted" - #{interpolant}; - test-29: "quoted"-lschema_#{ritlp}; - test-30: "quoted" -lschema_#{ritlp}; - test-31: "quoted"- lschema_#{ritlp}; - test-32: "quoted" - lschema_#{ritlp}; - test-33: "quoted"-#{litlp}_rschema; - test-34: "quoted" -#{litlp}_rschema; - test-35: "quoted"- #{litlp}_rschema; - test-36: "quoted" - #{litlp}_rschema; - test-37: #{interpolant}-#{interpolant}; - test-38: #{interpolant} -#{interpolant}; - test-39: #{interpolant}- #{interpolant}; - test-40: #{interpolant} - #{interpolant}; - test-41: #{interpolant}-lschema_#{ritlp}; - test-42: #{interpolant} -lschema_#{ritlp}; - test-43: #{interpolant}- lschema_#{ritlp}; - test-44: #{interpolant} - lschema_#{ritlp}; - test-45: #{interpolant}-#{litlp}_rschema; - test-46: #{interpolant} -#{litlp}_rschema; - test-47: #{interpolant}- #{litlp}_rschema; - test-48: #{interpolant} - #{litlp}_rschema; - test-49: lschema_#{ritlp}-lschema_#{ritlp}; - test-50: lschema_#{ritlp} -lschema_#{ritlp}; - test-51: lschema_#{ritlp}- lschema_#{ritlp}; - test-52: lschema_#{ritlp} - lschema_#{ritlp}; - test-53: lschema_#{ritlp}-#{litlp}_rschema; - test-54: lschema_#{ritlp} -#{litlp}_rschema; - test-55: lschema_#{ritlp}- #{litlp}_rschema; - test-56: lschema_#{ritlp} - #{litlp}_rschema; - test-57: #{litlp}_rschema-#{litlp}_rschema; - test-58: #{litlp}_rschema -#{litlp}_rschema; - test-59: #{litlp}_rschema- #{litlp}_rschema; - test-60: #{litlp}_rschema - #{litlp}_rschema; -} - -<===> output.css -foo { - test-1: literal-literal; - test-2: literal -literal; - test-3: literal- literal; - test-4: literal-literal; - test-5: literal- "quoted"; - test-6: literal-"quoted"; - test-7: literal- "quoted"; - test-8: literal-"quoted"; - test-9: literal-interpolant; - test-10: literal -interpolant; - test-11: literal- interpolant; - test-12: literal - interpolant; - test-13: literal-lschema_ritlp; - test-14: literal -lschema_ritlp; - test-15: literal- lschema_ritlp; - test-16: literal-lschema_ritlp; - test-17: literal-litlp_rschema; - test-18: literal -litlp_rschema; - test-19: literal- litlp_rschema; - test-20: literal - litlp_rschema; - test-21: "quoted"-"quoted"; - test-22: "quoted"-"quoted"; - test-23: "quoted"-"quoted"; - test-24: "quoted"-"quoted"; - test-25: "quoted"-interpolant; - test-26: "quoted" -interpolant; - test-27: "quoted"- interpolant; - test-28: "quoted" - interpolant; - test-29: "quoted" -lschema_ritlp; - test-30: "quoted" -lschema_ritlp; - test-31: "quoted"-lschema_ritlp; - test-32: "quoted"-lschema_ritlp; - test-33: "quoted"-litlp_rschema; - test-34: "quoted" -litlp_rschema; - test-35: "quoted"- litlp_rschema; - test-36: "quoted" - litlp_rschema; - test-37: interpolant-interpolant; - test-38: interpolant -interpolant; - test-39: interpolant- interpolant; - test-40: interpolant - interpolant; - test-41: interpolant-lschema_ritlp; - test-42: interpolant -lschema_ritlp; - test-43: interpolant- lschema_ritlp; - test-44: interpolant - lschema_ritlp; - test-45: interpolant-litlp_rschema; - test-46: interpolant -litlp_rschema; - test-47: interpolant- litlp_rschema; - test-48: interpolant - litlp_rschema; - test-49: lschema_ritlp-lschema_ritlp; - test-50: lschema_ritlp -lschema_ritlp; - test-51: lschema_ritlp- lschema_ritlp; - test-52: lschema_ritlp - lschema_ritlp; - test-53: lschema_ritlp-litlp_rschema; - test-54: lschema_ritlp -litlp_rschema; - test-55: lschema_ritlp- litlp_rschema; - test-56: lschema_ritlp - litlp_rschema; - test-57: litlp_rschema-litlp_rschema; - test-58: litlp_rschema -litlp_rschema; - test-59: litlp_rschema- litlp_rschema; - test-60: litlp_rschema - litlp_rschema; -} - -<===> warning -DEPRECATION WARNING on line 13 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("literal - interpolant") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 17 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{literal - lschema_}ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 21 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("literal - litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 28 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote('"quoted"- interpolant') - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 29 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote('"quoted" - interpolant') - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 32 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{"quoted" - lschema_}ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 33 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{"quoted" - lschema_}ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 36 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote('"quoted"- litlp_rschema') - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 37 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote('"quoted" - litlp_rschema') - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 40 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant- interpolant") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 41 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant - interpolant") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 45 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant - lschema_ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 48 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant- litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 49 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("interpolant - litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 53 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("lschema_ritlp - lschema_ritlp") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 56 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("lschema_ritlp- litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 57 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("lschema_ritlp - litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 61 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("litlp_rschema - litlp_rschema") - -You can use the sass-convert command to automatically fix most cases. diff --git a/spec/sass/bem.hrx b/spec/sass/bem.hrx deleted file mode 100644 index 28f09b53ce..0000000000 --- a/spec/sass/bem.hrx +++ /dev/null @@ -1,50 +0,0 @@ -<===> options.yml ---- -:end_version: '3.5' -:warning_todo: -- libsass - -<===> input.sass -.testing - :margin - :bottom 32px - :foobar - :bar 1px - :baz 2px - :hover - :baz 3px - :end 4px -<===> output.css -.testing { - margin-bottom: 32px; - margin-foobar-bar: 1px; - margin-foobar-baz: 2px; - margin-hover-baz: 3px; - end: 4px; -} - -<===> warning -DEPRECATION WARNING on line 2 of input.sass: -Old-style properties like ":margin" are deprecated and will be an error in future versions of Sass. -Use "margin: " instead. -DEPRECATION WARNING on line 3 of input.sass: -Old-style properties like ":bottom 32px" are deprecated and will be an error in future versions of Sass. -Use "bottom: 32px" instead. -DEPRECATION WARNING on line 4 of input.sass: -Old-style properties like ":foobar" are deprecated and will be an error in future versions of Sass. -Use "foobar: " instead. -DEPRECATION WARNING on line 5 of input.sass: -Old-style properties like ":bar 1px" are deprecated and will be an error in future versions of Sass. -Use "bar: 1px" instead. -DEPRECATION WARNING on line 6 of input.sass: -Old-style properties like ":baz 2px" are deprecated and will be an error in future versions of Sass. -Use "baz: 2px" instead. -DEPRECATION WARNING on line 7 of input.sass: -Old-style properties like ":hover" are deprecated and will be an error in future versions of Sass. -Use "hover: " instead. -DEPRECATION WARNING on line 8 of input.sass: -Old-style properties like ":baz 3px" are deprecated and will be an error in future versions of Sass. -Use "baz: 3px" instead. -DEPRECATION WARNING on line 9 of input.sass: -Old-style properties like ":end 4px" are deprecated and will be an error in future versions of Sass. -Use "end: 4px" instead. diff --git a/spec/sass_4_0/options.yml b/spec/sass_4_0/options.yml index 186adec538..32792ae3c6 100644 --- a/spec/sass_4_0/options.yml +++ b/spec/sass_4_0/options.yml @@ -1,4 +1,3 @@ --- -:start_version: '4.0' :todo: - libsass diff --git a/spec/scss-tests/117_test_selector_interpolation_in_reference_combinator.hrx b/spec/scss-tests/117_test_selector_interpolation_in_reference_combinator.hrx deleted file mode 100644 index 37378c75c9..0000000000 --- a/spec/scss-tests/117_test_selector_interpolation_in_reference_combinator.hrx +++ /dev/null @@ -1,23 +0,0 @@ -<===> options.yml ---- -:end_version: '3.5' -:todo: -- libsass - -<===> input.scss -$a: a; -$b: b; -$c: c; -.foo /#{$a}/ .bar /#{$b}|#{$c}/ .baz {a: b} - -<===> output.css -.foo /a/ .bar /b|c/ .baz { - a: b; -} - -<===> warning -DEPRECATION WARNING on line 4, column 9 of input.scss: -The reference combinator /a/ is deprecated and will be removed in a future release. - -DEPRECATION WARNING on line 4, column 20 of input.scss: -The reference combinator /b|c/ is deprecated and will be removed in a future release. diff --git a/spec/scss/function-names-4.0.hrx b/spec/scss/function-names-4.0.hrx index 10698d7950..b080ca1b8e 100644 --- a/spec/scss/function-names-4.0.hrx +++ b/spec/scss/function-names-4.0.hrx @@ -1,7 +1,3 @@ -<===> options.yml ---- -:start_version: '4.0' - <===> input.scss div { color: unquote("hello"); diff --git a/spec/scss/function-names.hrx b/spec/scss/function-names.hrx deleted file mode 100644 index d5d6f185d1..0000000000 --- a/spec/scss/function-names.hrx +++ /dev/null @@ -1,17 +0,0 @@ -<===> options.yml ---- -:end_version: '3.5' - -<===> input.scss -div { - color: unquote("hello"); - color: un#{quo}te("hello"); - color: ("hello")un#{quo}te; -} - -<===> output.css -div { - color: hello; - color: unquote("hello"); - color: "hello" unquote; -} diff --git a/spec/scss/ie-backslash.hrx b/spec/scss/ie-backslash.hrx index 2a9a3bdc7b..c793add28f 100644 --- a/spec/scss/ie-backslash.hrx +++ b/spec/scss/ie-backslash.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: "3.7" :todo: - libsass # sass/libsass#2700 diff --git a/spec/scss/interpolation-operators-precedence-4.0.hrx b/spec/scss/interpolation-operators-precedence-4.0.hrx index cc33c994d0..32d0f14046 100644 --- a/spec/scss/interpolation-operators-precedence-4.0.hrx +++ b/spec/scss/interpolation-operators-precedence-4.0.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: '4.0' :todo: - libsass diff --git a/spec/scss/interpolation-operators-precedence.hrx b/spec/scss/interpolation-operators-precedence.hrx deleted file mode 100644 index e2aa15b792..0000000000 --- a/spec/scss/interpolation-operators-precedence.hrx +++ /dev/null @@ -1,348 +0,0 @@ -<===> options.yml ---- -:end_version: '3.5' -:todo: -- libsass -:warning_todo: -- libsass - -<===> input.scss -.test { - a01: (#{a}+5.0% + 2); - a02: (#{a}+ 5.0% + 2); - a03: (#{a} +5.0% + 2); - a04: (#{a} + 5.0% + 2); - b01: (5 + 2.0%+#{a}); - b02: (5 + 2.0%+ #{a}); - b03: (5 + 2.0% +#{a}); - b04: (5 + 2.0% + #{a}); - c01: (#{a} +5.0% + 2); - c02: (#{a} -5.0% + 2); - c03: (#{a} /5.0% + 2); - c04: (#{a} *5.0% + 2); - c05: (#{a} +5.0% - 2); - c06: (#{a} -5.0% - 2); - c07: (#{a} /5.0% - 2); - c08: (#{a} *5.0% - 2); - c09: (#{a} +5.0% / 2); - c10: (#{a} -5.0% / 2); - c11: (#{a} /5.0% / 2); - c12: (#{a} *5.0% / 2); - c13: (#{a} +5.0% * 2); - c14: (#{a} -5.0% * 2); - c15: (#{a} /5.0% * 2); - c16: (#{a} *5.0% * 2); - d01: (5 + 2.0% +#{a}); - d02: (5 + 2.0% -#{a}); - d03: (5 + 2.0% /#{a}); - d04: (5 + 2.0% *#{a}); - d05: (5 - 2.0% +#{a}); - d06: (5 - 2.0% -#{a}); - d07: (5 - 2.0% /#{a}); - d08: (5 - 2.0% *#{a}); - d09: (5% / 2.0 +#{a}); - d10: (5% / 2.0 -#{a}); - d11: (5% / 2.0 /#{a}); - d12: (5% / 2.0 *#{a}); - d13: (5 * 2.0% +#{a}); - d14: (5 * 2.0% -#{a}); - d15: (5 * 2.0% /#{a}); - d16: (5 * 2.0% *#{a}); - e01: (#{a} ==5.0% == 2); - e02: (#{a} >5.0% > 2); - e03: (#{a} <5.0% < 2); - e04: (#{a} >=5.0% >= 2); - e05: (#{a} <=5.0% <= 2); - e06: (#{a} !=5.0% != 2); -} - -<===> output.css -.test { - a01: a+7%; - a02: a+ 7%; - a03: a +7%; - a04: a + 7%; - b01: 7%+a; - b02: 7%+ a; - b03: 7% +a; - b04: 7% + a; - c01: a +7%; - c02: a -3%; - c03: a /5%2; - c04: a *5%2; - c05: a +3%; - c06: a -7%; - c07: a /5%-2; - c08: a *5%-2; - c09: a +2.5%; - c10: a -2.5%; - c11: a /2.5%; - c12: a *2.5%; - c13: a +10%; - c14: a -10%; - c15: a /10%; - c16: a *10%; - d01: 7% +a; - d02: 7% -a; - d03: 52% /a; - d04: 52% *a; - d05: 3% +a; - d06: 3% -a; - d07: 5-2% /a; - d08: 5-2% *a; - d09: 2.5% +a; - d10: 2.5% -a; - d11: 2.5% /a; - d12: 2.5% *a; - d13: 10% +a; - d14: 10% -a; - d15: 10% /a; - d16: 10% *a; - e01: a ==false; - e02: a >true; - e03: a =true; - e05: a <=false; - e06: a !=true; -} - -<===> warning -DEPRECATION WARNING on line 2 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("a+#{5% + 2}") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 3 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("a+ #{5% + 2}") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 4 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("a +#{5% + 2}") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 5 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("a + #{5% + 2}") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 6 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{5 + 2%}+a") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 7 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{5 + 2%}+ a") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 8 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{5 + 2%} +a") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 9 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{5 + 2%} + a") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 10 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("a +#{5% + 2}") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 13 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("*5%") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 14 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("a +#{5% - 2}") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 17 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("*5%") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 18 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("a +#{5% / 2}") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 21 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("a *#{5% / 2}") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 22 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("a +#{5% * 2}") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 25 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("a *#{5% * 2}") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 26 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{5 + 2%} +a") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 29 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("2% *a") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 30 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{5 - 2%} +a") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 33 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("2% *a") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 34 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{5% / 2} +a") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 37 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{5% / 2} *a") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 38 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{5 * 2%} +a") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 41 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{5 * 2%} *a") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 42 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("a ==#{5% == 2}") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 43 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("a >#{5% > 2}") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 44 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("a <#{5% < 2}") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 45 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("a >=#{5% >= 2}") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 46 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("a <=#{5% <= 2}") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 47 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("a !=#{5% != 2}") - -You can use the sass-convert command to automatically fix most cases. diff --git a/spec/scss/zero-compression-4.0.hrx b/spec/scss/zero-compression-4.0.hrx index e0d83f941b..6c65c02f8f 100644 --- a/spec/scss/zero-compression-4.0.hrx +++ b/spec/scss/zero-compression-4.0.hrx @@ -1,7 +1,3 @@ -<===> options.yml ---- -:start_version: '4.0' - <===> input.scss $orig: 0.12em; $value: (0.12em); diff --git a/spec/scss/zero-compression.hrx b/spec/scss/zero-compression.hrx deleted file mode 100644 index 75aa64ec6d..0000000000 --- a/spec/scss/zero-compression.hrx +++ /dev/null @@ -1,21 +0,0 @@ -<===> options.yml ---- -:end_version: '3.5' - -<===> input.scss -$orig: 0.12em; -$value: (0.12em); -$score: (item-height: 0.12em); -foo { - tst-1: 0 -#{0.12em}; - tst-2: 0 -#{$orig}; - tst-3: 0 -#{$value}; - tst-4: 0 -#{map-get($score, item-height)}; -} -<===> output.css -foo { - tst-1: 0 -0.12em; - tst-2: 0 -0.12em; - tst-3: 0 -0.12em; - tst-4: 0 -0.12em; -} diff --git a/spec/types-4.0.hrx b/spec/types-4.0.hrx index 88b40d26a5..96859e3ad4 100644 --- a/spec/types-4.0.hrx +++ b/spec/types-4.0.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: '4.0' :todo: - libsass diff --git a/spec/types.hrx b/spec/types.hrx deleted file mode 100644 index aba3b47bfc..0000000000 --- a/spec/types.hrx +++ /dev/null @@ -1,98 +0,0 @@ -<===> options.yml ---- -:end_version: '3.5' -:warning_todo: -- libsass - -<===> input.scss - -@mixin foo($x, $y) { - color: $x, $y; -} - -div { - color: type-of(red); - color: type-of("red"); - color: type-of(#abc); - color: type-of(123); - color: type-of(45px); - color: type-of(98%); - color: type-of(1 2 3); - color: type-of(hey); - color: type-of("ho"); - color: type-of(#{1+2}px); - color: type-of(true); - color: type-of(false); - color: type-of(45 or false); - color: type-of(#{#abc}); - color: ty#{pe}-of(red); - color: quote(le#{ng}th(a b c d)); - color: aqua; - $x : aqua; - color: $x; - color: $x + #000000; - color: $x; - width: #{1+2}+3; - thing: url(type-of(3+3)); - //foo + bar: 3px; -} - -//@import url(type-of(3+3)); - -<===> output.css -div { - color: color; - color: string; - color: color; - color: number; - color: number; - color: number; - color: list; - color: string; - color: string; - color: string; - color: bool; - color: bool; - color: number; - color: string; - color: type-of(red); - color: "length(a b c d)"; - color: aqua; - color: aqua; - color: cyan; - color: aqua; - width: 3+3; - thing: url(number); -} - -<===> warning -DEPRECATION WARNING on line 28 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{1 + 2}+3") - -You can use the sass-convert command to automatically fix most cases. - -DEPRECATION WARNING on line 16 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#{1 + 2}px") - -DEPRECATION WARNING on line 20 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("#abc") - -DEPRECATION WARNING on line 22 of input.scss: -#{} interpolation near operators will be simplified in a future version of Sass. -To preserve the current behavior, use quotes: - - unquote("leng#{th(a b c d)}") - -DEPRECATION WARNING on line 26 of input.scss: -The operation `aqua plus #000000` is deprecated and will be an error in future versions. -Consider using Sass's color functions instead. -https://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions diff --git a/spec/values/colors/alpha_hex/initial_digit.hrx b/spec/values/colors/alpha_hex/initial_digit.hrx index c15c673679..7c695ed705 100644 --- a/spec/values/colors/alpha_hex/initial_digit.hrx +++ b/spec/values/colors/alpha_hex/initial_digit.hrx @@ -1,7 +1,3 @@ -<===> options.yml ---- -:start_version: '3.6' - <===> input.scss a { four-digit: #0123; diff --git a/spec/values/colors/alpha_hex/initial_letter.hrx b/spec/values/colors/alpha_hex/initial_letter.hrx index 9e4f6af0c0..284472f4e8 100644 --- a/spec/values/colors/alpha_hex/initial_letter.hrx +++ b/spec/values/colors/alpha_hex/initial_letter.hrx @@ -1,7 +1,3 @@ -<===> options.yml ---- -:start_version: '3.6' - <===> input.scss a { four-digit: #AbCd; diff --git a/spec/values/identifiers/escape/normalize/options.yml b/spec/values/identifiers/escape/normalize/options.yml index d7b48f3e04..3bb0723bb6 100644 --- a/spec/values/identifiers/escape/normalize/options.yml +++ b/spec/values/identifiers/escape/normalize/options.yml @@ -1,4 +1,3 @@ --- -:start_version: "3.7" :todo: - libsass # sass/libsass#2700 diff --git a/spec/values/identifiers/escape/script.hrx b/spec/values/identifiers/escape/script.hrx index 23e565654a..58965d2ef6 100644 --- a/spec/values/identifiers/escape/script.hrx +++ b/spec/values/identifiers/escape/script.hrx @@ -1,6 +1,5 @@ <===> options.yml --- -:start_version: "3.7" :todo: - libsass # sass/libsass#2700 From d8c05c35d0b0fbfb5588d09e70ee39018e838617 Mon Sep 17 00:00:00 2001 From: Natalie Weizenbaum Date: Wed, 10 Apr 2019 18:58:27 -0700 Subject: [PATCH 3/4] Remove "-4.0" from the name of spec directories --- ...lue_interpolation-4.0.hrx => 23_basic_value_interpolation.hrx} | 0 spec/colors/{basic-4.0.hrx => basic.hrx} | 0 .../issue_1093/argument/{function-4.0.hrx => function.hrx} | 0 .../issue_1093/argument/{mixin-4.0.hrx => mixin.hrx} | 0 spec/libsass-closed-issues/{issue_1333-4.0.hrx => issue_1333.hrx} | 0 spec/libsass-closed-issues/{issue_1396-4.0.hrx => issue_1396.hrx} | 0 spec/libsass-closed-issues/{issue_1413-4.0.hrx => issue_1413.hrx} | 0 .../issue_1418/{dynamic-4.0.hrx => dynamic.hrx} | 0 .../issue_1418/{static-4.0.hrx => static.hrx} | 0 spec/libsass-closed-issues/{issue_152-4.0.hrx => issue_152.hrx} | 0 spec/libsass-closed-issues/{issue_1671-4.0.hrx => issue_1671.hrx} | 0 spec/libsass-closed-issues/{issue_1709-4.0.hrx => issue_1709.hrx} | 0 spec/libsass-closed-issues/{issue_1722-4.0.hrx => issue_1722.hrx} | 0 .../issue_1739/interpolate/{both-4.0.hrx => both.hrx} | 0 .../issue_1739/interpolate/{left-4.0.hrx => left.hrx} | 0 .../issue_1739/interpolate/{right-4.0.hrx => right.hrx} | 0 spec/libsass-closed-issues/{issue_442-4.0.hrx => issue_442.hrx} | 0 spec/libsass-closed-issues/{issue_870-4.0.hrx => issue_870.hrx} | 0 spec/libsass-closed-issues/{issue_948-4.0.hrx => issue_948.hrx} | 0 ...lated-function-call-4.0.hrx => interpolated-function-call.hrx} | 0 spec/libsass/{interpolated-urls-4.0.hrx => interpolated-urls.hrx} | 0 .../00_concatenation/{unspaced-4.0.hrx => unspaced.hrx} | 0 .../input.scss | 0 .../output.css | 0 .../todo.txt | 0 .../input.scss | 0 .../output.css | 0 .../todo.txt | 0 ...6_escape_interpolation-4.0.hrx => 06_escape_interpolation.hrx} | 0 ...6_escape_interpolation-4.0.hrx => 06_escape_interpolation.hrx} | 0 .../operations/addition/dimensions/{pairs-4.0.hrx => pairs.hrx} | 0 .../operations/addition/numbers/{pairs-4.0.hrx => pairs.hrx} | 0 .../operations/addition/strings/{pairs-4.0.hrx => pairs.hrx} | 0 .../operations/division/dimensions/{pairs-4.0.hrx => pairs.hrx} | 0 .../parser/operations/division/mixed/{pairs-4.0.hrx => pairs.hrx} | 0 .../operations/division/numbers/{pairs-4.0.hrx => pairs.hrx} | 0 .../operations/division/strings/{pairs-4.0.hrx => pairs.hrx} | 0 .../operations/logic_eq/dimensions/{pairs-4.0.hrx => pairs.hrx} | 0 .../parser/operations/logic_eq/mixed/{pairs-4.0.hrx => pairs.hrx} | 0 .../operations/logic_eq/numbers/{pairs-4.0.hrx => pairs.hrx} | 0 .../operations/logic_eq/strings/{pairs-4.0.hrx => pairs.hrx} | 0 .../operations/logic_ne/dimensions/{pairs-4.0.hrx => pairs.hrx} | 0 .../parser/operations/logic_ne/mixed/{pairs-4.0.hrx => pairs.hrx} | 0 .../operations/logic_ne/numbers/{pairs-4.0.hrx => pairs.hrx} | 0 .../operations/logic_ne/strings/{pairs-4.0.hrx => pairs.hrx} | 0 .../operations/subtract/dimensions/{pairs-4.0.hrx => pairs.hrx} | 0 .../operations/subtract/numbers/{pairs-4.0.hrx => pairs.hrx} | 0 .../operations/subtract/strings/{pairs-4.0.hrx => pairs.hrx} | 0 spec/scss/{function-names-4.0.hrx => function-names.hrx} | 0 ...-precedence-4.0.hrx => interpolation-operators-precedence.hrx} | 0 spec/scss/{zero-compression-4.0.hrx => zero-compression.hrx} | 0 spec/{types-4.0.hrx => types.hrx} | 0 52 files changed, 0 insertions(+), 0 deletions(-) rename spec/basic/{23_basic_value_interpolation-4.0.hrx => 23_basic_value_interpolation.hrx} (100%) rename spec/colors/{basic-4.0.hrx => basic.hrx} (100%) rename spec/libsass-closed-issues/issue_1093/argument/{function-4.0.hrx => function.hrx} (100%) rename spec/libsass-closed-issues/issue_1093/argument/{mixin-4.0.hrx => mixin.hrx} (100%) rename spec/libsass-closed-issues/{issue_1333-4.0.hrx => issue_1333.hrx} (100%) rename spec/libsass-closed-issues/{issue_1396-4.0.hrx => issue_1396.hrx} (100%) rename spec/libsass-closed-issues/{issue_1413-4.0.hrx => issue_1413.hrx} (100%) rename spec/libsass-closed-issues/issue_1418/{dynamic-4.0.hrx => dynamic.hrx} (100%) rename spec/libsass-closed-issues/issue_1418/{static-4.0.hrx => static.hrx} (100%) rename spec/libsass-closed-issues/{issue_152-4.0.hrx => issue_152.hrx} (100%) rename spec/libsass-closed-issues/{issue_1671-4.0.hrx => issue_1671.hrx} (100%) rename spec/libsass-closed-issues/{issue_1709-4.0.hrx => issue_1709.hrx} (100%) rename spec/libsass-closed-issues/{issue_1722-4.0.hrx => issue_1722.hrx} (100%) rename spec/libsass-closed-issues/issue_1739/interpolate/{both-4.0.hrx => both.hrx} (100%) rename spec/libsass-closed-issues/issue_1739/interpolate/{left-4.0.hrx => left.hrx} (100%) rename spec/libsass-closed-issues/issue_1739/interpolate/{right-4.0.hrx => right.hrx} (100%) rename spec/libsass-closed-issues/{issue_442-4.0.hrx => issue_442.hrx} (100%) rename spec/libsass-closed-issues/{issue_870-4.0.hrx => issue_870.hrx} (100%) rename spec/libsass-closed-issues/{issue_948-4.0.hrx => issue_948.hrx} (100%) rename spec/libsass/{interpolated-function-call-4.0.hrx => interpolated-function-call.hrx} (100%) rename spec/libsass/{interpolated-urls-4.0.hrx => interpolated-urls.hrx} (100%) rename spec/parser/interpolate/00_concatenation/{unspaced-4.0.hrx => unspaced.hrx} (100%) rename spec/parser/interpolate/24_escapes_double_quoted_specials/{todo_05_variable_quoted_double-4.0 => todo_05_variable_quoted_double}/input.scss (100%) rename spec/parser/interpolate/24_escapes_double_quoted_specials/{todo_05_variable_quoted_double-4.0 => todo_05_variable_quoted_double}/output.css (100%) rename spec/parser/interpolate/24_escapes_double_quoted_specials/{todo_05_variable_quoted_double-4.0 => todo_05_variable_quoted_double}/todo.txt (100%) rename spec/parser/interpolate/25_escapes_single_quoted_specials/{todo_05_variable_quoted_double-4.0 => todo_05_variable_quoted_double}/input.scss (100%) rename spec/parser/interpolate/25_escapes_single_quoted_specials/{todo_05_variable_quoted_double-4.0 => todo_05_variable_quoted_double}/output.css (100%) rename spec/parser/interpolate/25_escapes_single_quoted_specials/{todo_05_variable_quoted_double-4.0 => todo_05_variable_quoted_double}/todo.txt (100%) rename spec/parser/interpolate/29_binary_operation/{06_escape_interpolation-4.0.hrx => 06_escape_interpolation.hrx} (100%) rename spec/parser/interpolate/30_base_test/{06_escape_interpolation-4.0.hrx => 06_escape_interpolation.hrx} (100%) rename spec/parser/operations/addition/dimensions/{pairs-4.0.hrx => pairs.hrx} (100%) rename spec/parser/operations/addition/numbers/{pairs-4.0.hrx => pairs.hrx} (100%) rename spec/parser/operations/addition/strings/{pairs-4.0.hrx => pairs.hrx} (100%) rename spec/parser/operations/division/dimensions/{pairs-4.0.hrx => pairs.hrx} (100%) rename spec/parser/operations/division/mixed/{pairs-4.0.hrx => pairs.hrx} (100%) rename spec/parser/operations/division/numbers/{pairs-4.0.hrx => pairs.hrx} (100%) rename spec/parser/operations/division/strings/{pairs-4.0.hrx => pairs.hrx} (100%) rename spec/parser/operations/logic_eq/dimensions/{pairs-4.0.hrx => pairs.hrx} (100%) rename spec/parser/operations/logic_eq/mixed/{pairs-4.0.hrx => pairs.hrx} (100%) rename spec/parser/operations/logic_eq/numbers/{pairs-4.0.hrx => pairs.hrx} (100%) rename spec/parser/operations/logic_eq/strings/{pairs-4.0.hrx => pairs.hrx} (100%) rename spec/parser/operations/logic_ne/dimensions/{pairs-4.0.hrx => pairs.hrx} (100%) rename spec/parser/operations/logic_ne/mixed/{pairs-4.0.hrx => pairs.hrx} (100%) rename spec/parser/operations/logic_ne/numbers/{pairs-4.0.hrx => pairs.hrx} (100%) rename spec/parser/operations/logic_ne/strings/{pairs-4.0.hrx => pairs.hrx} (100%) rename spec/parser/operations/subtract/dimensions/{pairs-4.0.hrx => pairs.hrx} (100%) rename spec/parser/operations/subtract/numbers/{pairs-4.0.hrx => pairs.hrx} (100%) rename spec/parser/operations/subtract/strings/{pairs-4.0.hrx => pairs.hrx} (100%) rename spec/scss/{function-names-4.0.hrx => function-names.hrx} (100%) rename spec/scss/{interpolation-operators-precedence-4.0.hrx => interpolation-operators-precedence.hrx} (100%) rename spec/scss/{zero-compression-4.0.hrx => zero-compression.hrx} (100%) rename spec/{types-4.0.hrx => types.hrx} (100%) diff --git a/spec/basic/23_basic_value_interpolation-4.0.hrx b/spec/basic/23_basic_value_interpolation.hrx similarity index 100% rename from spec/basic/23_basic_value_interpolation-4.0.hrx rename to spec/basic/23_basic_value_interpolation.hrx diff --git a/spec/colors/basic-4.0.hrx b/spec/colors/basic.hrx similarity index 100% rename from spec/colors/basic-4.0.hrx rename to spec/colors/basic.hrx diff --git a/spec/libsass-closed-issues/issue_1093/argument/function-4.0.hrx b/spec/libsass-closed-issues/issue_1093/argument/function.hrx similarity index 100% rename from spec/libsass-closed-issues/issue_1093/argument/function-4.0.hrx rename to spec/libsass-closed-issues/issue_1093/argument/function.hrx diff --git a/spec/libsass-closed-issues/issue_1093/argument/mixin-4.0.hrx b/spec/libsass-closed-issues/issue_1093/argument/mixin.hrx similarity index 100% rename from spec/libsass-closed-issues/issue_1093/argument/mixin-4.0.hrx rename to spec/libsass-closed-issues/issue_1093/argument/mixin.hrx diff --git a/spec/libsass-closed-issues/issue_1333-4.0.hrx b/spec/libsass-closed-issues/issue_1333.hrx similarity index 100% rename from spec/libsass-closed-issues/issue_1333-4.0.hrx rename to spec/libsass-closed-issues/issue_1333.hrx diff --git a/spec/libsass-closed-issues/issue_1396-4.0.hrx b/spec/libsass-closed-issues/issue_1396.hrx similarity index 100% rename from spec/libsass-closed-issues/issue_1396-4.0.hrx rename to spec/libsass-closed-issues/issue_1396.hrx diff --git a/spec/libsass-closed-issues/issue_1413-4.0.hrx b/spec/libsass-closed-issues/issue_1413.hrx similarity index 100% rename from spec/libsass-closed-issues/issue_1413-4.0.hrx rename to spec/libsass-closed-issues/issue_1413.hrx diff --git a/spec/libsass-closed-issues/issue_1418/dynamic-4.0.hrx b/spec/libsass-closed-issues/issue_1418/dynamic.hrx similarity index 100% rename from spec/libsass-closed-issues/issue_1418/dynamic-4.0.hrx rename to spec/libsass-closed-issues/issue_1418/dynamic.hrx diff --git a/spec/libsass-closed-issues/issue_1418/static-4.0.hrx b/spec/libsass-closed-issues/issue_1418/static.hrx similarity index 100% rename from spec/libsass-closed-issues/issue_1418/static-4.0.hrx rename to spec/libsass-closed-issues/issue_1418/static.hrx diff --git a/spec/libsass-closed-issues/issue_152-4.0.hrx b/spec/libsass-closed-issues/issue_152.hrx similarity index 100% rename from spec/libsass-closed-issues/issue_152-4.0.hrx rename to spec/libsass-closed-issues/issue_152.hrx diff --git a/spec/libsass-closed-issues/issue_1671-4.0.hrx b/spec/libsass-closed-issues/issue_1671.hrx similarity index 100% rename from spec/libsass-closed-issues/issue_1671-4.0.hrx rename to spec/libsass-closed-issues/issue_1671.hrx diff --git a/spec/libsass-closed-issues/issue_1709-4.0.hrx b/spec/libsass-closed-issues/issue_1709.hrx similarity index 100% rename from spec/libsass-closed-issues/issue_1709-4.0.hrx rename to spec/libsass-closed-issues/issue_1709.hrx diff --git a/spec/libsass-closed-issues/issue_1722-4.0.hrx b/spec/libsass-closed-issues/issue_1722.hrx similarity index 100% rename from spec/libsass-closed-issues/issue_1722-4.0.hrx rename to spec/libsass-closed-issues/issue_1722.hrx diff --git a/spec/libsass-closed-issues/issue_1739/interpolate/both-4.0.hrx b/spec/libsass-closed-issues/issue_1739/interpolate/both.hrx similarity index 100% rename from spec/libsass-closed-issues/issue_1739/interpolate/both-4.0.hrx rename to spec/libsass-closed-issues/issue_1739/interpolate/both.hrx diff --git a/spec/libsass-closed-issues/issue_1739/interpolate/left-4.0.hrx b/spec/libsass-closed-issues/issue_1739/interpolate/left.hrx similarity index 100% rename from spec/libsass-closed-issues/issue_1739/interpolate/left-4.0.hrx rename to spec/libsass-closed-issues/issue_1739/interpolate/left.hrx diff --git a/spec/libsass-closed-issues/issue_1739/interpolate/right-4.0.hrx b/spec/libsass-closed-issues/issue_1739/interpolate/right.hrx similarity index 100% rename from spec/libsass-closed-issues/issue_1739/interpolate/right-4.0.hrx rename to spec/libsass-closed-issues/issue_1739/interpolate/right.hrx diff --git a/spec/libsass-closed-issues/issue_442-4.0.hrx b/spec/libsass-closed-issues/issue_442.hrx similarity index 100% rename from spec/libsass-closed-issues/issue_442-4.0.hrx rename to spec/libsass-closed-issues/issue_442.hrx diff --git a/spec/libsass-closed-issues/issue_870-4.0.hrx b/spec/libsass-closed-issues/issue_870.hrx similarity index 100% rename from spec/libsass-closed-issues/issue_870-4.0.hrx rename to spec/libsass-closed-issues/issue_870.hrx diff --git a/spec/libsass-closed-issues/issue_948-4.0.hrx b/spec/libsass-closed-issues/issue_948.hrx similarity index 100% rename from spec/libsass-closed-issues/issue_948-4.0.hrx rename to spec/libsass-closed-issues/issue_948.hrx diff --git a/spec/libsass/interpolated-function-call-4.0.hrx b/spec/libsass/interpolated-function-call.hrx similarity index 100% rename from spec/libsass/interpolated-function-call-4.0.hrx rename to spec/libsass/interpolated-function-call.hrx diff --git a/spec/libsass/interpolated-urls-4.0.hrx b/spec/libsass/interpolated-urls.hrx similarity index 100% rename from spec/libsass/interpolated-urls-4.0.hrx rename to spec/libsass/interpolated-urls.hrx diff --git a/spec/parser/interpolate/00_concatenation/unspaced-4.0.hrx b/spec/parser/interpolate/00_concatenation/unspaced.hrx similarity index 100% rename from spec/parser/interpolate/00_concatenation/unspaced-4.0.hrx rename to spec/parser/interpolate/00_concatenation/unspaced.hrx diff --git a/spec/parser/interpolate/24_escapes_double_quoted_specials/todo_05_variable_quoted_double-4.0/input.scss b/spec/parser/interpolate/24_escapes_double_quoted_specials/todo_05_variable_quoted_double/input.scss similarity index 100% rename from spec/parser/interpolate/24_escapes_double_quoted_specials/todo_05_variable_quoted_double-4.0/input.scss rename to spec/parser/interpolate/24_escapes_double_quoted_specials/todo_05_variable_quoted_double/input.scss diff --git a/spec/parser/interpolate/24_escapes_double_quoted_specials/todo_05_variable_quoted_double-4.0/output.css b/spec/parser/interpolate/24_escapes_double_quoted_specials/todo_05_variable_quoted_double/output.css similarity index 100% rename from spec/parser/interpolate/24_escapes_double_quoted_specials/todo_05_variable_quoted_double-4.0/output.css rename to spec/parser/interpolate/24_escapes_double_quoted_specials/todo_05_variable_quoted_double/output.css diff --git a/spec/parser/interpolate/24_escapes_double_quoted_specials/todo_05_variable_quoted_double-4.0/todo.txt b/spec/parser/interpolate/24_escapes_double_quoted_specials/todo_05_variable_quoted_double/todo.txt similarity index 100% rename from spec/parser/interpolate/24_escapes_double_quoted_specials/todo_05_variable_quoted_double-4.0/todo.txt rename to spec/parser/interpolate/24_escapes_double_quoted_specials/todo_05_variable_quoted_double/todo.txt diff --git a/spec/parser/interpolate/25_escapes_single_quoted_specials/todo_05_variable_quoted_double-4.0/input.scss b/spec/parser/interpolate/25_escapes_single_quoted_specials/todo_05_variable_quoted_double/input.scss similarity index 100% rename from spec/parser/interpolate/25_escapes_single_quoted_specials/todo_05_variable_quoted_double-4.0/input.scss rename to spec/parser/interpolate/25_escapes_single_quoted_specials/todo_05_variable_quoted_double/input.scss diff --git a/spec/parser/interpolate/25_escapes_single_quoted_specials/todo_05_variable_quoted_double-4.0/output.css b/spec/parser/interpolate/25_escapes_single_quoted_specials/todo_05_variable_quoted_double/output.css similarity index 100% rename from spec/parser/interpolate/25_escapes_single_quoted_specials/todo_05_variable_quoted_double-4.0/output.css rename to spec/parser/interpolate/25_escapes_single_quoted_specials/todo_05_variable_quoted_double/output.css diff --git a/spec/parser/interpolate/25_escapes_single_quoted_specials/todo_05_variable_quoted_double-4.0/todo.txt b/spec/parser/interpolate/25_escapes_single_quoted_specials/todo_05_variable_quoted_double/todo.txt similarity index 100% rename from spec/parser/interpolate/25_escapes_single_quoted_specials/todo_05_variable_quoted_double-4.0/todo.txt rename to spec/parser/interpolate/25_escapes_single_quoted_specials/todo_05_variable_quoted_double/todo.txt diff --git a/spec/parser/interpolate/29_binary_operation/06_escape_interpolation-4.0.hrx b/spec/parser/interpolate/29_binary_operation/06_escape_interpolation.hrx similarity index 100% rename from spec/parser/interpolate/29_binary_operation/06_escape_interpolation-4.0.hrx rename to spec/parser/interpolate/29_binary_operation/06_escape_interpolation.hrx diff --git a/spec/parser/interpolate/30_base_test/06_escape_interpolation-4.0.hrx b/spec/parser/interpolate/30_base_test/06_escape_interpolation.hrx similarity index 100% rename from spec/parser/interpolate/30_base_test/06_escape_interpolation-4.0.hrx rename to spec/parser/interpolate/30_base_test/06_escape_interpolation.hrx diff --git a/spec/parser/operations/addition/dimensions/pairs-4.0.hrx b/spec/parser/operations/addition/dimensions/pairs.hrx similarity index 100% rename from spec/parser/operations/addition/dimensions/pairs-4.0.hrx rename to spec/parser/operations/addition/dimensions/pairs.hrx diff --git a/spec/parser/operations/addition/numbers/pairs-4.0.hrx b/spec/parser/operations/addition/numbers/pairs.hrx similarity index 100% rename from spec/parser/operations/addition/numbers/pairs-4.0.hrx rename to spec/parser/operations/addition/numbers/pairs.hrx diff --git a/spec/parser/operations/addition/strings/pairs-4.0.hrx b/spec/parser/operations/addition/strings/pairs.hrx similarity index 100% rename from spec/parser/operations/addition/strings/pairs-4.0.hrx rename to spec/parser/operations/addition/strings/pairs.hrx diff --git a/spec/parser/operations/division/dimensions/pairs-4.0.hrx b/spec/parser/operations/division/dimensions/pairs.hrx similarity index 100% rename from spec/parser/operations/division/dimensions/pairs-4.0.hrx rename to spec/parser/operations/division/dimensions/pairs.hrx diff --git a/spec/parser/operations/division/mixed/pairs-4.0.hrx b/spec/parser/operations/division/mixed/pairs.hrx similarity index 100% rename from spec/parser/operations/division/mixed/pairs-4.0.hrx rename to spec/parser/operations/division/mixed/pairs.hrx diff --git a/spec/parser/operations/division/numbers/pairs-4.0.hrx b/spec/parser/operations/division/numbers/pairs.hrx similarity index 100% rename from spec/parser/operations/division/numbers/pairs-4.0.hrx rename to spec/parser/operations/division/numbers/pairs.hrx diff --git a/spec/parser/operations/division/strings/pairs-4.0.hrx b/spec/parser/operations/division/strings/pairs.hrx similarity index 100% rename from spec/parser/operations/division/strings/pairs-4.0.hrx rename to spec/parser/operations/division/strings/pairs.hrx diff --git a/spec/parser/operations/logic_eq/dimensions/pairs-4.0.hrx b/spec/parser/operations/logic_eq/dimensions/pairs.hrx similarity index 100% rename from spec/parser/operations/logic_eq/dimensions/pairs-4.0.hrx rename to spec/parser/operations/logic_eq/dimensions/pairs.hrx diff --git a/spec/parser/operations/logic_eq/mixed/pairs-4.0.hrx b/spec/parser/operations/logic_eq/mixed/pairs.hrx similarity index 100% rename from spec/parser/operations/logic_eq/mixed/pairs-4.0.hrx rename to spec/parser/operations/logic_eq/mixed/pairs.hrx diff --git a/spec/parser/operations/logic_eq/numbers/pairs-4.0.hrx b/spec/parser/operations/logic_eq/numbers/pairs.hrx similarity index 100% rename from spec/parser/operations/logic_eq/numbers/pairs-4.0.hrx rename to spec/parser/operations/logic_eq/numbers/pairs.hrx diff --git a/spec/parser/operations/logic_eq/strings/pairs-4.0.hrx b/spec/parser/operations/logic_eq/strings/pairs.hrx similarity index 100% rename from spec/parser/operations/logic_eq/strings/pairs-4.0.hrx rename to spec/parser/operations/logic_eq/strings/pairs.hrx diff --git a/spec/parser/operations/logic_ne/dimensions/pairs-4.0.hrx b/spec/parser/operations/logic_ne/dimensions/pairs.hrx similarity index 100% rename from spec/parser/operations/logic_ne/dimensions/pairs-4.0.hrx rename to spec/parser/operations/logic_ne/dimensions/pairs.hrx diff --git a/spec/parser/operations/logic_ne/mixed/pairs-4.0.hrx b/spec/parser/operations/logic_ne/mixed/pairs.hrx similarity index 100% rename from spec/parser/operations/logic_ne/mixed/pairs-4.0.hrx rename to spec/parser/operations/logic_ne/mixed/pairs.hrx diff --git a/spec/parser/operations/logic_ne/numbers/pairs-4.0.hrx b/spec/parser/operations/logic_ne/numbers/pairs.hrx similarity index 100% rename from spec/parser/operations/logic_ne/numbers/pairs-4.0.hrx rename to spec/parser/operations/logic_ne/numbers/pairs.hrx diff --git a/spec/parser/operations/logic_ne/strings/pairs-4.0.hrx b/spec/parser/operations/logic_ne/strings/pairs.hrx similarity index 100% rename from spec/parser/operations/logic_ne/strings/pairs-4.0.hrx rename to spec/parser/operations/logic_ne/strings/pairs.hrx diff --git a/spec/parser/operations/subtract/dimensions/pairs-4.0.hrx b/spec/parser/operations/subtract/dimensions/pairs.hrx similarity index 100% rename from spec/parser/operations/subtract/dimensions/pairs-4.0.hrx rename to spec/parser/operations/subtract/dimensions/pairs.hrx diff --git a/spec/parser/operations/subtract/numbers/pairs-4.0.hrx b/spec/parser/operations/subtract/numbers/pairs.hrx similarity index 100% rename from spec/parser/operations/subtract/numbers/pairs-4.0.hrx rename to spec/parser/operations/subtract/numbers/pairs.hrx diff --git a/spec/parser/operations/subtract/strings/pairs-4.0.hrx b/spec/parser/operations/subtract/strings/pairs.hrx similarity index 100% rename from spec/parser/operations/subtract/strings/pairs-4.0.hrx rename to spec/parser/operations/subtract/strings/pairs.hrx diff --git a/spec/scss/function-names-4.0.hrx b/spec/scss/function-names.hrx similarity index 100% rename from spec/scss/function-names-4.0.hrx rename to spec/scss/function-names.hrx diff --git a/spec/scss/interpolation-operators-precedence-4.0.hrx b/spec/scss/interpolation-operators-precedence.hrx similarity index 100% rename from spec/scss/interpolation-operators-precedence-4.0.hrx rename to spec/scss/interpolation-operators-precedence.hrx diff --git a/spec/scss/zero-compression-4.0.hrx b/spec/scss/zero-compression.hrx similarity index 100% rename from spec/scss/zero-compression-4.0.hrx rename to spec/scss/zero-compression.hrx diff --git a/spec/types-4.0.hrx b/spec/types.hrx similarity index 100% rename from spec/types-4.0.hrx rename to spec/types.hrx From cddcb0b9e335fc510efca9afc8c6261fcc7cda6d Mon Sep 17 00:00:00 2001 From: Natalie Weizenbaum Date: Thu, 11 Apr 2019 12:22:26 -0700 Subject: [PATCH 4/4] Don't pass -V on Travis --- .travis.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index e2a762bee5..b1d2cc7078 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,8 +15,8 @@ env: matrix: fast_finish: true include: - - env: LANGUAGE_VERSION=4.0 IMPL=libsass COMMAND="../sassc/bin/sassc" - - env: LANGUAGE_VERSION=4.0 IMPL=dart-sass + - env: IMPL=libsass COMMAND="../sassc/bin/sassc" + - env: IMPL=dart-sass before_install: - if ./tools/skipped-for-impl.sh; then exit 0; fi @@ -41,7 +41,7 @@ before_install: script: - if [ $IMPL == "dart-sass" ]; then - bundle exec sass-spec.rb -V $LANGUAGE_VERSION --dart ../dart-sass; + bundle exec sass-spec.rb --dart ../dart-sass; else - bundle exec sass-spec.rb -V $LANGUAGE_VERSION --impl $IMPL -c $COMMAND; + bundle exec sass-spec.rb --impl $IMPL -c $COMMAND; fi