File tree Expand file tree Collapse file tree 1 file changed +2
-6
lines changed
Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -71,11 +71,9 @@ def to_proto(obj)
7171 )
7272 when Sass ::Value ::Function
7373 if obj . instance_variable_defined? ( :@id )
74- assert_compiler_value ( obj )
75-
7674 EmbeddedProtocol ::Value . new (
7775 compiler_function : EmbeddedProtocol ::Value ::CompilerFunction . new (
78- id : obj . instance_variable_get ( :@id )
76+ id : assert_compiler_value ( obj ) . instance_variable_get ( :@id )
7977 )
8078 )
8179 else
@@ -87,11 +85,9 @@ def to_proto(obj)
8785 )
8886 end
8987 when Sass ::Value ::Mixin
90- assert_compiler_value ( obj )
91-
9288 EmbeddedProtocol ::Value . new (
9389 compiler_mixin : EmbeddedProtocol ::Value ::CompilerMixin . new (
94- id : obj . instance_variable_get ( :@id )
90+ id : assert_compiler_value ( obj ) . instance_variable_get ( :@id )
9591 )
9692 )
9793 when Sass ::Value ::Calculation
You can’t perform that action at this time.
0 commit comments