sass 3.1.2 → 3.1.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (120) hide show
  1. data/VERSION +1 -1
  2. data/lib/sass.rb +1 -0
  3. data/lib/sass.rbc +865 -0
  4. data/lib/sass/cache_stores.rbc +210 -0
  5. data/lib/sass/cache_stores/base.rbc +1110 -0
  6. data/lib/sass/cache_stores/chain.rbc +759 -0
  7. data/lib/sass/cache_stores/filesystem.rbc +1170 -0
  8. data/lib/sass/cache_stores/memory.rbc +892 -0
  9. data/lib/sass/callbacks.rbc +623 -0
  10. data/lib/sass/css.rbc +3483 -0
  11. data/lib/sass/engine.rbc +19260 -0
  12. data/lib/sass/environment.rbc +1829 -0
  13. data/lib/sass/error.rbc +2858 -0
  14. data/lib/sass/importers.rbc +162 -0
  15. data/lib/sass/importers/base.rbc +677 -0
  16. data/lib/sass/importers/filesystem.rb +9 -4
  17. data/lib/sass/importers/filesystem.rbc +2910 -0
  18. data/lib/sass/less.rbc +11309 -0
  19. data/lib/sass/logger.rb +15 -0
  20. data/lib/sass/logger/base.rb +32 -0
  21. data/lib/sass/logger/log_level.rb +49 -0
  22. data/lib/sass/plugin.rbc +1360 -0
  23. data/lib/sass/plugin/compiler.rbc +4205 -0
  24. data/lib/sass/plugin/configuration.rbc +1514 -0
  25. data/lib/sass/plugin/generic.rbc +206 -0
  26. data/lib/sass/plugin/staleness_checker.rbc +2545 -0
  27. data/lib/sass/railtie.rbc +259 -0
  28. data/lib/sass/root.rbc +160 -0
  29. data/lib/sass/script.rbc +728 -0
  30. data/lib/sass/script/bool.rbc +366 -0
  31. data/lib/sass/script/color.rbc +7884 -0
  32. data/lib/sass/script/css_lexer.rbc +793 -0
  33. data/lib/sass/script/css_parser.rbc +620 -0
  34. data/lib/sass/script/funcall.rbc +4325 -0
  35. data/lib/sass/script/functions.rbc +15331 -0
  36. data/lib/sass/script/interpolation.rbc +1181 -0
  37. data/lib/sass/script/lexer.rbc +7136 -0
  38. data/lib/sass/script/list.rbc +1795 -0
  39. data/lib/sass/script/literal.rbc +3411 -0
  40. data/lib/sass/script/node.rbc +1176 -0
  41. data/lib/sass/script/number.rbc +5978 -0
  42. data/lib/sass/script/operation.rbc +1684 -0
  43. data/lib/sass/script/parser.rbc +9739 -0
  44. data/lib/sass/script/string.rbc +965 -0
  45. data/lib/sass/script/string_interpolation.rbc +1619 -0
  46. data/lib/sass/script/unary_operation.rbc +1120 -0
  47. data/lib/sass/script/variable.rbc +899 -0
  48. data/lib/sass/scss.rbc +242 -0
  49. data/lib/sass/scss/css_parser.rbc +1098 -0
  50. data/lib/sass/scss/parser.rbc +20522 -0
  51. data/lib/sass/scss/rx.rbc +2878 -0
  52. data/lib/sass/scss/sass_parser.rbc +287 -0
  53. data/lib/sass/scss/script_lexer.rbc +404 -0
  54. data/lib/sass/scss/script_parser.rbc +482 -0
  55. data/lib/sass/scss/static_parser.rbc +963 -0
  56. data/lib/sass/selector.rbc +4125 -0
  57. data/lib/sass/selector/abstract_sequence.rbc +798 -0
  58. data/lib/sass/selector/comma_sequence.rbc +1806 -0
  59. data/lib/sass/selector/sequence.rbc +4727 -0
  60. data/lib/sass/selector/simple.rbc +1490 -0
  61. data/lib/sass/selector/simple_sequence.rbc +2298 -0
  62. data/lib/sass/shared.rbc +1093 -0
  63. data/lib/sass/tree/charset_node.rbc +381 -0
  64. data/lib/sass/tree/comment_node.rbc +1175 -0
  65. data/lib/sass/tree/debug_node.rbc +365 -0
  66. data/lib/sass/tree/directive_node.rbc +298 -0
  67. data/lib/sass/tree/each_node.rbc +347 -0
  68. data/lib/sass/tree/extend_node.rbc +335 -0
  69. data/lib/sass/tree/for_node.rbc +407 -0
  70. data/lib/sass/tree/function_node.rbc +395 -0
  71. data/lib/sass/tree/if_node.rbc +995 -0
  72. data/lib/sass/tree/import_node.rbc +1327 -0
  73. data/lib/sass/tree/media_node.rbc +423 -0
  74. data/lib/sass/tree/mixin_def_node.rbc +395 -0
  75. data/lib/sass/tree/mixin_node.rbc +377 -0
  76. data/lib/sass/tree/node.rbc +2394 -0
  77. data/lib/sass/tree/prop_node.rbc +2695 -0
  78. data/lib/sass/tree/return_node.rbc +365 -0
  79. data/lib/sass/tree/root_node.rbc +558 -0
  80. data/lib/sass/tree/rule_node.rbc +1597 -0
  81. data/lib/sass/tree/variable_node.rbc +425 -0
  82. data/lib/sass/tree/visitors/base.rbc +981 -0
  83. data/lib/sass/tree/visitors/check_nesting.rbc +3247 -0
  84. data/lib/sass/tree/visitors/convert.rbc +6529 -0
  85. data/lib/sass/tree/visitors/cssize.rbc +4133 -0
  86. data/lib/sass/tree/visitors/perform.rbc +8169 -0
  87. data/lib/sass/tree/visitors/to_css.rbc +6971 -0
  88. data/lib/sass/tree/warn_node.rbc +365 -0
  89. data/lib/sass/tree/while_node.rbc +317 -0
  90. data/lib/sass/util.rb +3 -5
  91. data/lib/sass/util.rbc +9956 -0
  92. data/lib/sass/util/subset_map.rbc +1304 -0
  93. data/lib/sass/version.rbc +1763 -0
  94. data/test/sass/cache_test.rbc +2159 -0
  95. data/test/sass/callbacks_test.rbc +1518 -0
  96. data/test/sass/conversion_test.rbc +7840 -0
  97. data/test/sass/css2sass_test.rbc +3805 -0
  98. data/test/sass/engine_test.rb +11 -7
  99. data/test/sass/engine_test.rbc +30858 -0
  100. data/test/sass/extend_test.rbc +8794 -0
  101. data/test/sass/fixtures/test_staleness_check_across_importers.css +1 -0
  102. data/test/sass/fixtures/test_staleness_check_across_importers.scss +1 -0
  103. data/test/sass/functions_test.rbc +21318 -0
  104. data/test/sass/importer_test.rb +103 -0
  105. data/test/sass/importer_test.rbc +4520 -0
  106. data/test/sass/less_conversion_test.rbc +5328 -0
  107. data/test/sass/logger_test.rb +58 -0
  108. data/test/sass/mock_importer.rbc +1203 -0
  109. data/test/sass/plugin_test.rbc +11014 -0
  110. data/test/sass/script_conversion_test.rbc +4953 -0
  111. data/test/sass/script_test.rbc +13038 -0
  112. data/test/sass/scss/css_test.rbc +9621 -0
  113. data/test/sass/scss/rx_test.rbc +3183 -0
  114. data/test/sass/scss/scss_test.rbc +10997 -0
  115. data/test/sass/scss/test_helper.rbc +1103 -0
  116. data/test/sass/test_helper.rbc +306 -0
  117. data/test/sass/util/subset_map_test.rbc +2755 -0
  118. data/test/sass/util_test.rbc +6899 -0
  119. data/test/test_helper.rbc +2020 -0
  120. metadata +116 -2
@@ -0,0 +1,2695 @@
1
+ !RBIX
2
+ 333337424968067900
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 30
13
+ 99
14
+ 7
15
+ 0
16
+ 45
17
+ 1
18
+ 2
19
+ 49
20
+ 3
21
+ 2
22
+ 13
23
+ 99
24
+ 12
25
+ 7
26
+ 4
27
+ 12
28
+ 7
29
+ 5
30
+ 12
31
+ 65
32
+ 12
33
+ 49
34
+ 6
35
+ 4
36
+ 15
37
+ 49
38
+ 4
39
+ 0
40
+ 15
41
+ 2
42
+ 11
43
+ I
44
+ 6
45
+ I
46
+ 0
47
+ I
48
+ 0
49
+ I
50
+ 0
51
+ n
52
+ p
53
+ 7
54
+ x
55
+ 4
56
+ Tree
57
+ x
58
+ 4
59
+ Sass
60
+ n
61
+ x
62
+ 17
63
+ open_module_under
64
+ x
65
+ 15
66
+ __module_init__
67
+ M
68
+ 1
69
+ n
70
+ n
71
+ x
72
+ 4
73
+ Tree
74
+ i
75
+ 31
76
+ 5
77
+ 66
78
+ 99
79
+ 7
80
+ 0
81
+ 45
82
+ 1
83
+ 2
84
+ 65
85
+ 49
86
+ 3
87
+ 3
88
+ 13
89
+ 99
90
+ 12
91
+ 7
92
+ 4
93
+ 12
94
+ 7
95
+ 5
96
+ 12
97
+ 65
98
+ 12
99
+ 49
100
+ 6
101
+ 4
102
+ 15
103
+ 49
104
+ 4
105
+ 0
106
+ 11
107
+ I
108
+ 6
109
+ I
110
+ 0
111
+ I
112
+ 0
113
+ I
114
+ 0
115
+ n
116
+ p
117
+ 7
118
+ x
119
+ 8
120
+ PropNode
121
+ x
122
+ 4
123
+ Node
124
+ n
125
+ x
126
+ 10
127
+ open_class
128
+ x
129
+ 14
130
+ __class_init__
131
+ M
132
+ 1
133
+ n
134
+ n
135
+ x
136
+ 8
137
+ PropNode
138
+ i
139
+ 142
140
+ 5
141
+ 66
142
+ 5
143
+ 7
144
+ 0
145
+ 47
146
+ 49
147
+ 1
148
+ 1
149
+ 15
150
+ 5
151
+ 7
152
+ 2
153
+ 47
154
+ 49
155
+ 1
156
+ 1
157
+ 15
158
+ 5
159
+ 7
160
+ 3
161
+ 47
162
+ 49
163
+ 1
164
+ 1
165
+ 15
166
+ 5
167
+ 7
168
+ 4
169
+ 47
170
+ 49
171
+ 1
172
+ 1
173
+ 15
174
+ 5
175
+ 7
176
+ 5
177
+ 47
178
+ 49
179
+ 1
180
+ 1
181
+ 15
182
+ 99
183
+ 7
184
+ 6
185
+ 7
186
+ 7
187
+ 65
188
+ 67
189
+ 49
190
+ 8
191
+ 0
192
+ 49
193
+ 9
194
+ 4
195
+ 15
196
+ 99
197
+ 7
198
+ 10
199
+ 7
200
+ 11
201
+ 65
202
+ 67
203
+ 49
204
+ 8
205
+ 0
206
+ 49
207
+ 9
208
+ 4
209
+ 15
210
+ 99
211
+ 7
212
+ 12
213
+ 7
214
+ 13
215
+ 65
216
+ 67
217
+ 49
218
+ 8
219
+ 0
220
+ 49
221
+ 9
222
+ 4
223
+ 15
224
+ 99
225
+ 7
226
+ 14
227
+ 7
228
+ 15
229
+ 65
230
+ 67
231
+ 49
232
+ 8
233
+ 0
234
+ 49
235
+ 9
236
+ 4
237
+ 15
238
+ 5
239
+ 48
240
+ 16
241
+ 15
242
+ 99
243
+ 7
244
+ 17
245
+ 7
246
+ 18
247
+ 65
248
+ 67
249
+ 49
250
+ 8
251
+ 0
252
+ 49
253
+ 9
254
+ 4
255
+ 15
256
+ 5
257
+ 99
258
+ 12
259
+ 49
260
+ 19
261
+ 1
262
+ 13
263
+ 99
264
+ 12
265
+ 7
266
+ 20
267
+ 12
268
+ 7
269
+ 21
270
+ 12
271
+ 65
272
+ 12
273
+ 49
274
+ 22
275
+ 4
276
+ 15
277
+ 54
278
+ 50
279
+ 20
280
+ 0
281
+ 11
282
+ I
283
+ 6
284
+ I
285
+ 0
286
+ I
287
+ 0
288
+ I
289
+ 0
290
+ n
291
+ p
292
+ 23
293
+ x
294
+ 4
295
+ name
296
+ x
297
+ 13
298
+ attr_accessor
299
+ x
300
+ 13
301
+ resolved_name
302
+ x
303
+ 5
304
+ value
305
+ x
306
+ 14
307
+ resolved_value
308
+ x
309
+ 4
310
+ tabs
311
+ x
312
+ 10
313
+ initialize
314
+ M
315
+ 1
316
+ n
317
+ n
318
+ x
319
+ 10
320
+ initialize
321
+ i
322
+ 40
323
+ 45
324
+ 0
325
+ 1
326
+ 43
327
+ 2
328
+ 45
329
+ 0
330
+ 3
331
+ 43
332
+ 2
333
+ 20
334
+ 0
335
+ 49
336
+ 4
337
+ 1
338
+ 49
339
+ 5
340
+ 1
341
+ 38
342
+ 6
343
+ 15
344
+ 20
345
+ 1
346
+ 38
347
+ 7
348
+ 15
349
+ 78
350
+ 38
351
+ 8
352
+ 15
353
+ 20
354
+ 2
355
+ 38
356
+ 9
357
+ 15
358
+ 54
359
+ 52
360
+ 10
361
+ 0
362
+ 11
363
+ I
364
+ 6
365
+ I
366
+ 3
367
+ I
368
+ 3
369
+ I
370
+ 3
371
+ n
372
+ p
373
+ 11
374
+ x
375
+ 4
376
+ Sass
377
+ n
378
+ x
379
+ 4
380
+ Util
381
+ n
382
+ x
383
+ 22
384
+ merge_adjacent_strings
385
+ x
386
+ 18
387
+ strip_string_array
388
+ x
389
+ 5
390
+ @name
391
+ x
392
+ 6
393
+ @value
394
+ x
395
+ 5
396
+ @tabs
397
+ x
398
+ 12
399
+ @prop_syntax
400
+ x
401
+ 10
402
+ initialize
403
+ p
404
+ 17
405
+ I
406
+ -1
407
+ I
408
+ 31
409
+ I
410
+ 0
411
+ I
412
+ 32
413
+ I
414
+ 5
415
+ I
416
+ 33
417
+ I
418
+ f
419
+ I
420
+ 32
421
+ I
422
+ 15
423
+ I
424
+ 34
425
+ I
426
+ 1a
427
+ I
428
+ 35
429
+ I
430
+ 1e
431
+ I
432
+ 36
433
+ I
434
+ 23
435
+ I
436
+ 37
437
+ I
438
+ 28
439
+ x
440
+ 53
441
+ /Users/chris/Projects/sass/lib/sass/tree/prop_node.rb
442
+ p
443
+ 3
444
+ x
445
+ 4
446
+ name
447
+ x
448
+ 5
449
+ value
450
+ x
451
+ 11
452
+ prop_syntax
453
+ x
454
+ 17
455
+ method_visibility
456
+ x
457
+ 15
458
+ add_defn_method
459
+ x
460
+ 2
461
+ ==
462
+ M
463
+ 1
464
+ n
465
+ n
466
+ x
467
+ 2
468
+ ==
469
+ i
470
+ 47
471
+ 5
472
+ 49
473
+ 0
474
+ 0
475
+ 20
476
+ 0
477
+ 49
478
+ 0
479
+ 0
480
+ 83
481
+ 1
482
+ 13
483
+ 9
484
+ 46
485
+ 15
486
+ 5
487
+ 48
488
+ 2
489
+ 20
490
+ 0
491
+ 49
492
+ 2
493
+ 0
494
+ 83
495
+ 1
496
+ 13
497
+ 9
498
+ 46
499
+ 15
500
+ 5
501
+ 48
502
+ 3
503
+ 20
504
+ 0
505
+ 49
506
+ 3
507
+ 0
508
+ 83
509
+ 1
510
+ 13
511
+ 9
512
+ 46
513
+ 15
514
+ 54
515
+ 89
516
+ 1
517
+ 11
518
+ I
519
+ 3
520
+ I
521
+ 1
522
+ I
523
+ 1
524
+ I
525
+ 1
526
+ n
527
+ p
528
+ 4
529
+ x
530
+ 5
531
+ class
532
+ x
533
+ 2
534
+ ==
535
+ x
536
+ 4
537
+ name
538
+ x
539
+ 5
540
+ value
541
+ p
542
+ 5
543
+ I
544
+ -1
545
+ I
546
+ 3f
547
+ I
548
+ 0
549
+ I
550
+ 40
551
+ I
552
+ 2f
553
+ x
554
+ 53
555
+ /Users/chris/Projects/sass/lib/sass/tree/prop_node.rb
556
+ p
557
+ 1
558
+ x
559
+ 5
560
+ other
561
+ x
562
+ 29
563
+ pseudo_class_selector_message
564
+ M
565
+ 1
566
+ n
567
+ n
568
+ x
569
+ 29
570
+ pseudo_class_selector_message
571
+ i
572
+ 82
573
+ 39
574
+ 0
575
+ 7
576
+ 1
577
+ 83
578
+ 2
579
+ 13
580
+ 10
581
+ 48
582
+ 15
583
+ 5
584
+ 48
585
+ 3
586
+ 45
587
+ 4
588
+ 5
589
+ 43
590
+ 6
591
+ 43
592
+ 7
593
+ 49
594
+ 8
595
+ 1
596
+ 10
597
+ 28
598
+ 2
599
+ 8
600
+ 29
601
+ 3
602
+ 13
603
+ 10
604
+ 48
605
+ 15
606
+ 5
607
+ 48
608
+ 3
609
+ 49
610
+ 3
611
+ 0
612
+ 49
613
+ 9
614
+ 0
615
+ 10
616
+ 47
617
+ 2
618
+ 8
619
+ 48
620
+ 3
621
+ 9
622
+ 56
623
+ 7
624
+ 10
625
+ 64
626
+ 11
627
+ 8
628
+ 57
629
+ 1
630
+ 15
631
+ 7
632
+ 11
633
+ 5
634
+ 48
635
+ 12
636
+ 49
637
+ 13
638
+ 0
639
+ 47
640
+ 101
641
+ 14
642
+ 7
643
+ 15
644
+ 5
645
+ 48
646
+ 12
647
+ 47
648
+ 101
649
+ 14
650
+ 7
651
+ 16
652
+ 63
653
+ 5
654
+ 11
655
+ I
656
+ 5
657
+ I
658
+ 0
659
+ I
660
+ 0
661
+ I
662
+ 0
663
+ n
664
+ p
665
+ 17
666
+ x
667
+ 12
668
+ @prop_syntax
669
+ x
670
+ 3
671
+ new
672
+ x
673
+ 2
674
+ ==
675
+ x
676
+ 5
677
+ value
678
+ x
679
+ 4
680
+ Sass
681
+ n
682
+ x
683
+ 6
684
+ Script
685
+ x
686
+ 6
687
+ String
688
+ x
689
+ 5
690
+ is_a?
691
+ x
692
+ 6
693
+ empty?
694
+ s
695
+ 0
696
+
697
+ s
698
+ 4
699
+
700
+ If
701
+ x
702
+ 11
703
+ declaration
704
+ x
705
+ 4
706
+ dump
707
+ x
708
+ 4
709
+ to_s
710
+ s
711
+ 29
712
+ should be a selector, use "\
713
+ s
714
+ 10
715
+ " instead.
716
+ p
717
+ 7
718
+ I
719
+ -1
720
+ I
721
+ 48
722
+ I
723
+ 0
724
+ I
725
+ 49
726
+ I
727
+ 3a
728
+ I
729
+ 4a
730
+ I
731
+ 52
732
+ x
733
+ 53
734
+ /Users/chris/Projects/sass/lib/sass/tree/prop_node.rb
735
+ p
736
+ 0
737
+ x
738
+ 11
739
+ declaration
740
+ M
741
+ 1
742
+ n
743
+ n
744
+ x
745
+ 11
746
+ declaration
747
+ i
748
+ 242
749
+ 23
750
+ 0
751
+ 10
752
+ 27
753
+ 44
754
+ 43
755
+ 0
756
+ 79
757
+ 49
758
+ 1
759
+ 1
760
+ 13
761
+ 7
762
+ 2
763
+ 39
764
+ 3
765
+ 7
766
+ 2
767
+ 83
768
+ 4
769
+ 49
770
+ 5
771
+ 2
772
+ 15
773
+ 19
774
+ 0
775
+ 15
776
+ 23
777
+ 1
778
+ 10
779
+ 36
780
+ 7
781
+ 6
782
+ 19
783
+ 1
784
+ 15
785
+ 5
786
+ 49
787
+ 7
788
+ 0
789
+ 56
790
+ 8
791
+ 50
792
+ 9
793
+ 0
794
+ 49
795
+ 10
796
+ 0
797
+ 19
798
+ 2
799
+ 15
800
+ 20
801
+ 2
802
+ 78
803
+ 49
804
+ 11
805
+ 1
806
+ 4
807
+ 58
808
+ 83
809
+ 4
810
+ 9
811
+ 152
812
+ 5
813
+ 45
814
+ 12
815
+ 13
816
+ 43
817
+ 14
818
+ 13
819
+ 71
820
+ 15
821
+ 47
822
+ 9
823
+ 115
824
+ 47
825
+ 49
826
+ 16
827
+ 0
828
+ 13
829
+ 7
830
+ 17
831
+ 20
832
+ 2
833
+ 47
834
+ 101
835
+ 18
836
+ 7
837
+ 19
838
+ 5
839
+ 49
840
+ 20
841
+ 0
842
+ 5
843
+ 48
844
+ 21
845
+ 20
846
+ 0
847
+ 49
848
+ 22
849
+ 2
850
+ 47
851
+ 101
852
+ 18
853
+ 7
854
+ 23
855
+ 63
856
+ 5
857
+ 47
858
+ 49
859
+ 24
860
+ 1
861
+ 15
862
+ 8
863
+ 146
864
+ 7
865
+ 17
866
+ 20
867
+ 2
868
+ 47
869
+ 101
870
+ 18
871
+ 7
872
+ 19
873
+ 5
874
+ 49
875
+ 20
876
+ 0
877
+ 5
878
+ 48
879
+ 21
880
+ 20
881
+ 0
882
+ 49
883
+ 22
884
+ 2
885
+ 47
886
+ 101
887
+ 18
888
+ 7
889
+ 23
890
+ 63
891
+ 5
892
+ 49
893
+ 15
894
+ 1
895
+ 47
896
+ 49
897
+ 25
898
+ 1
899
+ 8
900
+ 153
901
+ 1
902
+ 15
903
+ 20
904
+ 0
905
+ 7
906
+ 2
907
+ 49
908
+ 11
909
+ 1
910
+ 13
911
+ 9
912
+ 171
913
+ 15
914
+ 20
915
+ 1
916
+ 7
917
+ 6
918
+ 83
919
+ 4
920
+ 19
921
+ 3
922
+ 15
923
+ 20
924
+ 3
925
+ 9
926
+ 183
927
+ 7
928
+ 26
929
+ 64
930
+ 8
931
+ 186
932
+ 7
933
+ 27
934
+ 64
935
+ 19
936
+ 4
937
+ 15
938
+ 20
939
+ 3
940
+ 9
941
+ 198
942
+ 7
943
+ 27
944
+ 64
945
+ 8
946
+ 201
947
+ 7
948
+ 26
949
+ 64
950
+ 19
951
+ 5
952
+ 15
953
+ 20
954
+ 4
955
+ 47
956
+ 101
957
+ 18
958
+ 20
959
+ 2
960
+ 47
961
+ 101
962
+ 18
963
+ 20
964
+ 5
965
+ 47
966
+ 101
967
+ 18
968
+ 7
969
+ 28
970
+ 5
971
+ 49
972
+ 20
973
+ 0
974
+ 5
975
+ 48
976
+ 21
977
+ 20
978
+ 0
979
+ 49
980
+ 22
981
+ 2
982
+ 47
983
+ 101
984
+ 18
985
+ 63
986
+ 5
987
+ 49
988
+ 29
989
+ 0
990
+ 11
991
+ I
992
+ f
993
+ I
994
+ 6
995
+ I
996
+ 0
997
+ I
998
+ 2
999
+ n
1000
+ p
1001
+ 30
1002
+ x
1003
+ 4
1004
+ Hash
1005
+ x
1006
+ 16
1007
+ new_from_literal
1008
+ x
1009
+ 3
1010
+ old
1011
+ x
1012
+ 12
1013
+ @prop_syntax
1014
+ x
1015
+ 2
1016
+ ==
1017
+ x
1018
+ 3
1019
+ []=
1020
+ x
1021
+ 4
1022
+ sass
1023
+ x
1024
+ 4
1025
+ name
1026
+ M
1027
+ 1
1028
+ p
1029
+ 2
1030
+ x
1031
+ 9
1032
+ for_block
1033
+ t
1034
+ n
1035
+ x
1036
+ 11
1037
+ declaration
1038
+ i
1039
+ 36
1040
+ 57
1041
+ 19
1042
+ 0
1043
+ 15
1044
+ 20
1045
+ 0
1046
+ 45
1047
+ 0
1048
+ 1
1049
+ 49
1050
+ 2
1051
+ 1
1052
+ 9
1053
+ 18
1054
+ 20
1055
+ 0
1056
+ 8
1057
+ 35
1058
+ 7
1059
+ 3
1060
+ 20
1061
+ 0
1062
+ 21
1063
+ 1
1064
+ 0
1065
+ 49
1066
+ 4
1067
+ 1
1068
+ 47
1069
+ 101
1070
+ 5
1071
+ 7
1072
+ 6
1073
+ 63
1074
+ 3
1075
+ 11
1076
+ I
1077
+ 5
1078
+ I
1079
+ 1
1080
+ I
1081
+ 1
1082
+ I
1083
+ 1
1084
+ n
1085
+ p
1086
+ 7
1087
+ x
1088
+ 6
1089
+ String
1090
+ n
1091
+ x
1092
+ 5
1093
+ is_a?
1094
+ s
1095
+ 2
1096
+ #{
1097
+ x
1098
+ 7
1099
+ to_sass
1100
+ x
1101
+ 4
1102
+ to_s
1103
+ s
1104
+ 1
1105
+ }
1106
+ p
1107
+ 3
1108
+ I
1109
+ 0
1110
+ I
1111
+ 54
1112
+ I
1113
+ 24
1114
+ x
1115
+ 53
1116
+ /Users/chris/Projects/sass/lib/sass/tree/prop_node.rb
1117
+ p
1118
+ 1
1119
+ x
1120
+ 1
1121
+ n
1122
+ x
1123
+ 3
1124
+ map
1125
+ x
1126
+ 4
1127
+ join
1128
+ x
1129
+ 2
1130
+ []
1131
+ x
1132
+ 4
1133
+ Sass
1134
+ n
1135
+ x
1136
+ 11
1137
+ SyntaxError
1138
+ x
1139
+ 3
1140
+ new
1141
+ x
1142
+ 8
1143
+ allocate
1144
+ s
1145
+ 5
1146
+ The "
1147
+ x
1148
+ 4
1149
+ to_s
1150
+ s
1151
+ 2
1152
+ :
1153
+ x
1154
+ 5
1155
+ class
1156
+ x
1157
+ 5
1158
+ value
1159
+ x
1160
+ 11
1161
+ val_to_sass
1162
+ s
1163
+ 49
1164
+ " hack is not allowed in the Sass indented syntax
1165
+ x
1166
+ 10
1167
+ initialize
1168
+ x
1169
+ 5
1170
+ raise
1171
+ s
1172
+ 1
1173
+ :
1174
+ s
1175
+ 0
1176
+
1177
+ s
1178
+ 1
1179
+
1180
+ x
1181
+ 6
1182
+ rstrip
1183
+ p
1184
+ 19
1185
+ I
1186
+ -1
1187
+ I
1188
+ 53
1189
+ I
1190
+ 24
1191
+ I
1192
+ 54
1193
+ I
1194
+ 33
1195
+ I
1196
+ 55
1197
+ I
1198
+ 3f
1199
+ I
1200
+ 56
1201
+ I
1202
+ 98
1203
+ I
1204
+ 55
1205
+ I
1206
+ 9a
1207
+ I
1208
+ 59
1209
+ I
1210
+ ae
1211
+ I
1212
+ 5a
1213
+ I
1214
+ bd
1215
+ I
1216
+ 5b
1217
+ I
1218
+ cc
1219
+ I
1220
+ 5c
1221
+ I
1222
+ f2
1223
+ x
1224
+ 53
1225
+ /Users/chris/Projects/sass/lib/sass/tree/prop_node.rb
1226
+ p
1227
+ 6
1228
+ x
1229
+ 4
1230
+ opts
1231
+ x
1232
+ 3
1233
+ fmt
1234
+ x
1235
+ 4
1236
+ name
1237
+ x
1238
+ 3
1239
+ old
1240
+ x
1241
+ 7
1242
+ initial
1243
+ x
1244
+ 3
1245
+ mid
1246
+ x
1247
+ 7
1248
+ private
1249
+ x
1250
+ 6
1251
+ check!
1252
+ M
1253
+ 1
1254
+ n
1255
+ n
1256
+ x
1257
+ 6
1258
+ check!
1259
+ i
1260
+ 198
1261
+ 39
1262
+ 0
1263
+ 7
1264
+ 1
1265
+ 49
1266
+ 2
1267
+ 1
1268
+ 13
1269
+ 9
1270
+ 28
1271
+ 15
1272
+ 39
1273
+ 0
1274
+ 7
1275
+ 1
1276
+ 49
1277
+ 2
1278
+ 1
1279
+ 39
1280
+ 3
1281
+ 83
1282
+ 4
1283
+ 10
1284
+ 27
1285
+ 2
1286
+ 8
1287
+ 28
1288
+ 3
1289
+ 9
1290
+ 115
1291
+ 5
1292
+ 45
1293
+ 5
1294
+ 6
1295
+ 43
1296
+ 7
1297
+ 13
1298
+ 71
1299
+ 8
1300
+ 47
1301
+ 9
1302
+ 80
1303
+ 47
1304
+ 49
1305
+ 9
1306
+ 0
1307
+ 13
1308
+ 7
1309
+ 10
1310
+ 39
1311
+ 3
1312
+ 47
1313
+ 101
1314
+ 11
1315
+ 7
1316
+ 12
1317
+ 39
1318
+ 0
1319
+ 7
1320
+ 1
1321
+ 49
1322
+ 2
1323
+ 1
1324
+ 49
1325
+ 13
1326
+ 0
1327
+ 47
1328
+ 101
1329
+ 11
1330
+ 7
1331
+ 14
1332
+ 63
1333
+ 5
1334
+ 47
1335
+ 49
1336
+ 15
1337
+ 1
1338
+ 15
1339
+ 8
1340
+ 109
1341
+ 7
1342
+ 10
1343
+ 39
1344
+ 3
1345
+ 47
1346
+ 101
1347
+ 11
1348
+ 7
1349
+ 12
1350
+ 39
1351
+ 0
1352
+ 7
1353
+ 1
1354
+ 49
1355
+ 2
1356
+ 1
1357
+ 49
1358
+ 13
1359
+ 0
1360
+ 47
1361
+ 101
1362
+ 11
1363
+ 7
1364
+ 14
1365
+ 63
1366
+ 5
1367
+ 49
1368
+ 8
1369
+ 1
1370
+ 47
1371
+ 49
1372
+ 16
1373
+ 1
1374
+ 8
1375
+ 197
1376
+ 5
1377
+ 48
1378
+ 17
1379
+ 49
1380
+ 18
1381
+ 0
1382
+ 9
1383
+ 196
1384
+ 5
1385
+ 45
1386
+ 5
1387
+ 19
1388
+ 43
1389
+ 7
1390
+ 13
1391
+ 71
1392
+ 8
1393
+ 47
1394
+ 9
1395
+ 167
1396
+ 47
1397
+ 49
1398
+ 9
1399
+ 0
1400
+ 13
1401
+ 7
1402
+ 20
1403
+ 5
1404
+ 48
1405
+ 21
1406
+ 49
1407
+ 22
1408
+ 0
1409
+ 47
1410
+ 101
1411
+ 11
1412
+ 7
1413
+ 23
1414
+ 63
1415
+ 3
1416
+ 5
1417
+ 48
1418
+ 24
1419
+ 81
1420
+ 25
1421
+ 47
1422
+ 49
1423
+ 15
1424
+ 1
1425
+ 15
1426
+ 8
1427
+ 190
1428
+ 7
1429
+ 20
1430
+ 5
1431
+ 48
1432
+ 21
1433
+ 49
1434
+ 22
1435
+ 0
1436
+ 47
1437
+ 101
1438
+ 11
1439
+ 7
1440
+ 23
1441
+ 63
1442
+ 3
1443
+ 5
1444
+ 48
1445
+ 24
1446
+ 81
1447
+ 25
1448
+ 49
1449
+ 8
1450
+ 1
1451
+ 47
1452
+ 49
1453
+ 16
1454
+ 1
1455
+ 8
1456
+ 197
1457
+ 1
1458
+ 11
1459
+ I
1460
+ 8
1461
+ I
1462
+ 0
1463
+ I
1464
+ 0
1465
+ I
1466
+ 0
1467
+ n
1468
+ p
1469
+ 26
1470
+ x
1471
+ 8
1472
+ @options
1473
+ x
1474
+ 15
1475
+ property_syntax
1476
+ x
1477
+ 2
1478
+ []
1479
+ x
1480
+ 12
1481
+ @prop_syntax
1482
+ x
1483
+ 2
1484
+ ==
1485
+ x
1486
+ 4
1487
+ Sass
1488
+ n
1489
+ x
1490
+ 11
1491
+ SyntaxError
1492
+ x
1493
+ 3
1494
+ new
1495
+ x
1496
+ 8
1497
+ allocate
1498
+ s
1499
+ 35
1500
+ Illegal property syntax: can't use
1501
+ x
1502
+ 4
1503
+ to_s
1504
+ s
1505
+ 33
1506
+ syntax when :property_syntax =>
1507
+ x
1508
+ 7
1509
+ inspect
1510
+ s
1511
+ 8
1512
+ is set.
1513
+ x
1514
+ 10
1515
+ initialize
1516
+ x
1517
+ 5
1518
+ raise
1519
+ x
1520
+ 14
1521
+ resolved_value
1522
+ x
1523
+ 6
1524
+ empty?
1525
+ n
1526
+ s
1527
+ 18
1528
+ Invalid property:
1529
+ x
1530
+ 11
1531
+ declaration
1532
+ x
1533
+ 4
1534
+ dump
1535
+ s
1536
+ 12
1537
+ (no value).
1538
+ x
1539
+ 29
1540
+ pseudo_class_selector_message
1541
+ x
1542
+ 1
1543
+ +
1544
+ p
1545
+ 25
1546
+ I
1547
+ -1
1548
+ I
1549
+ 61
1550
+ I
1551
+ 0
1552
+ I
1553
+ 62
1554
+ I
1555
+ 1e
1556
+ I
1557
+ 64
1558
+ I
1559
+ 1f
1560
+ I
1561
+ 63
1562
+ I
1563
+ 2f
1564
+ I
1565
+ 64
1566
+ I
1567
+ 73
1568
+ I
1569
+ 65
1570
+ I
1571
+ 7b
1572
+ I
1573
+ 67
1574
+ I
1575
+ 7c
1576
+ I
1577
+ 66
1578
+ I
1579
+ 9b
1580
+ I
1581
+ 67
1582
+ I
1583
+ a7
1584
+ I
1585
+ 66
1586
+ I
1587
+ b6
1588
+ I
1589
+ 67
1590
+ I
1591
+ c4
1592
+ I
1593
+ 65
1594
+ I
1595
+ c6
1596
+ x
1597
+ 53
1598
+ /Users/chris/Projects/sass/lib/sass/tree/prop_node.rb
1599
+ p
1600
+ 0
1601
+ x
1602
+ 16
1603
+ object_metaclass
1604
+ x
1605
+ 18
1606
+ __metaclass_init__
1607
+ M
1608
+ 1
1609
+ n
1610
+ n
1611
+ x
1612
+ 18
1613
+ __metaclass_init__
1614
+ i
1615
+ 62
1616
+ 5
1617
+ 66
1618
+ 99
1619
+ 7
1620
+ 0
1621
+ 7
1622
+ 1
1623
+ 65
1624
+ 67
1625
+ 49
1626
+ 2
1627
+ 0
1628
+ 49
1629
+ 3
1630
+ 4
1631
+ 15
1632
+ 5
1633
+ 48
1634
+ 4
1635
+ 15
1636
+ 99
1637
+ 7
1638
+ 5
1639
+ 7
1640
+ 6
1641
+ 65
1642
+ 67
1643
+ 49
1644
+ 2
1645
+ 0
1646
+ 49
1647
+ 3
1648
+ 4
1649
+ 15
1650
+ 99
1651
+ 7
1652
+ 7
1653
+ 7
1654
+ 8
1655
+ 65
1656
+ 67
1657
+ 49
1658
+ 2
1659
+ 0
1660
+ 49
1661
+ 3
1662
+ 4
1663
+ 15
1664
+ 99
1665
+ 7
1666
+ 9
1667
+ 7
1668
+ 10
1669
+ 65
1670
+ 67
1671
+ 49
1672
+ 2
1673
+ 0
1674
+ 49
1675
+ 3
1676
+ 4
1677
+ 11
1678
+ I
1679
+ 5
1680
+ I
1681
+ 0
1682
+ I
1683
+ 0
1684
+ I
1685
+ 0
1686
+ n
1687
+ p
1688
+ 11
1689
+ x
1690
+ 11
1691
+ val_to_sass
1692
+ M
1693
+ 1
1694
+ n
1695
+ n
1696
+ x
1697
+ 11
1698
+ val_to_sass
1699
+ i
1700
+ 15
1701
+ 5
1702
+ 20
1703
+ 0
1704
+ 20
1705
+ 1
1706
+ 47
1707
+ 49
1708
+ 0
1709
+ 2
1710
+ 20
1711
+ 1
1712
+ 49
1713
+ 1
1714
+ 1
1715
+ 11
1716
+ I
1717
+ 5
1718
+ I
1719
+ 2
1720
+ I
1721
+ 2
1722
+ I
1723
+ 2
1724
+ n
1725
+ p
1726
+ 2
1727
+ x
1728
+ 17
1729
+ val_to_sass_comma
1730
+ x
1731
+ 7
1732
+ to_sass
1733
+ p
1734
+ 5
1735
+ I
1736
+ -1
1737
+ I
1738
+ 6d
1739
+ I
1740
+ 0
1741
+ I
1742
+ 6e
1743
+ I
1744
+ f
1745
+ x
1746
+ 53
1747
+ /Users/chris/Projects/sass/lib/sass/tree/prop_node.rb
1748
+ p
1749
+ 2
1750
+ x
1751
+ 5
1752
+ value
1753
+ x
1754
+ 4
1755
+ opts
1756
+ x
1757
+ 17
1758
+ method_visibility
1759
+ x
1760
+ 15
1761
+ add_defn_method
1762
+ x
1763
+ 7
1764
+ private
1765
+ x
1766
+ 17
1767
+ val_to_sass_comma
1768
+ M
1769
+ 1
1770
+ n
1771
+ n
1772
+ x
1773
+ 17
1774
+ val_to_sass_comma
1775
+ i
1776
+ 133
1777
+ 20
1778
+ 0
1779
+ 45
1780
+ 0
1781
+ 1
1782
+ 43
1783
+ 2
1784
+ 43
1785
+ 3
1786
+ 49
1787
+ 4
1788
+ 1
1789
+ 9
1790
+ 17
1791
+ 1
1792
+ 8
1793
+ 20
1794
+ 20
1795
+ 0
1796
+ 11
1797
+ 15
1798
+ 20
1799
+ 0
1800
+ 49
1801
+ 5
1802
+ 0
1803
+ 7
1804
+ 6
1805
+ 83
1806
+ 7
1807
+ 9
1808
+ 35
1809
+ 1
1810
+ 8
1811
+ 45
1812
+ 5
1813
+ 20
1814
+ 0
1815
+ 20
1816
+ 1
1817
+ 47
1818
+ 49
1819
+ 8
1820
+ 2
1821
+ 11
1822
+ 15
1823
+ 45
1824
+ 0
1825
+ 9
1826
+ 43
1827
+ 2
1828
+ 43
1829
+ 3
1830
+ 13
1831
+ 71
1832
+ 10
1833
+ 47
1834
+ 9
1835
+ 100
1836
+ 47
1837
+ 49
1838
+ 11
1839
+ 0
1840
+ 13
1841
+ 5
1842
+ 20
1843
+ 0
1844
+ 49
1845
+ 12
1846
+ 0
1847
+ 20
1848
+ 1
1849
+ 47
1850
+ 49
1851
+ 8
1852
+ 2
1853
+ 5
1854
+ 20
1855
+ 0
1856
+ 49
1857
+ 13
1858
+ 0
1859
+ 20
1860
+ 1
1861
+ 47
1862
+ 49
1863
+ 14
1864
+ 2
1865
+ 20
1866
+ 0
1867
+ 49
1868
+ 5
1869
+ 0
1870
+ 47
1871
+ 49
1872
+ 15
1873
+ 3
1874
+ 15
1875
+ 8
1876
+ 132
1877
+ 5
1878
+ 20
1879
+ 0
1880
+ 49
1881
+ 12
1882
+ 0
1883
+ 20
1884
+ 1
1885
+ 47
1886
+ 49
1887
+ 8
1888
+ 2
1889
+ 5
1890
+ 20
1891
+ 0
1892
+ 49
1893
+ 13
1894
+ 0
1895
+ 20
1896
+ 1
1897
+ 47
1898
+ 49
1899
+ 14
1900
+ 2
1901
+ 20
1902
+ 0
1903
+ 49
1904
+ 5
1905
+ 0
1906
+ 49
1907
+ 10
1908
+ 3
1909
+ 11
1910
+ I
1911
+ 8
1912
+ I
1913
+ 2
1914
+ I
1915
+ 2
1916
+ I
1917
+ 2
1918
+ n
1919
+ p
1920
+ 16
1921
+ x
1922
+ 4
1923
+ Sass
1924
+ n
1925
+ x
1926
+ 6
1927
+ Script
1928
+ x
1929
+ 9
1930
+ Operation
1931
+ x
1932
+ 5
1933
+ is_a?
1934
+ x
1935
+ 8
1936
+ operator
1937
+ x
1938
+ 5
1939
+ comma
1940
+ x
1941
+ 2
1942
+ ==
1943
+ x
1944
+ 18
1945
+ val_to_sass_concat
1946
+ n
1947
+ x
1948
+ 3
1949
+ new
1950
+ x
1951
+ 8
1952
+ allocate
1953
+ x
1954
+ 8
1955
+ operand1
1956
+ x
1957
+ 8
1958
+ operand2
1959
+ x
1960
+ 17
1961
+ val_to_sass_comma
1962
+ x
1963
+ 10
1964
+ initialize
1965
+ p
1966
+ 21
1967
+ I
1968
+ -1
1969
+ I
1970
+ 73
1971
+ I
1972
+ 0
1973
+ I
1974
+ 74
1975
+ I
1976
+ 15
1977
+ I
1978
+ 75
1979
+ I
1980
+ 2e
1981
+ I
1982
+ 77
1983
+ I
1984
+ 40
1985
+ I
1986
+ 78
1987
+ I
1988
+ 4c
1989
+ I
1990
+ 79
1991
+ I
1992
+ 58
1993
+ I
1994
+ 7a
1995
+ I
1996
+ 64
1997
+ I
1998
+ 78
1999
+ I
2000
+ 70
2001
+ I
2002
+ 79
2003
+ I
2004
+ 7c
2005
+ I
2006
+ 7a
2007
+ I
2008
+ 85
2009
+ x
2010
+ 53
2011
+ /Users/chris/Projects/sass/lib/sass/tree/prop_node.rb
2012
+ p
2013
+ 2
2014
+ x
2015
+ 4
2016
+ node
2017
+ x
2018
+ 4
2019
+ opts
2020
+ x
2021
+ 18
2022
+ val_to_sass_concat
2023
+ M
2024
+ 1
2025
+ n
2026
+ n
2027
+ x
2028
+ 18
2029
+ val_to_sass_concat
2030
+ i
2031
+ 133
2032
+ 20
2033
+ 0
2034
+ 45
2035
+ 0
2036
+ 1
2037
+ 43
2038
+ 2
2039
+ 43
2040
+ 3
2041
+ 49
2042
+ 4
2043
+ 1
2044
+ 9
2045
+ 17
2046
+ 1
2047
+ 8
2048
+ 20
2049
+ 20
2050
+ 0
2051
+ 11
2052
+ 15
2053
+ 20
2054
+ 0
2055
+ 49
2056
+ 5
2057
+ 0
2058
+ 7
2059
+ 6
2060
+ 83
2061
+ 7
2062
+ 9
2063
+ 35
2064
+ 1
2065
+ 8
2066
+ 45
2067
+ 5
2068
+ 20
2069
+ 0
2070
+ 20
2071
+ 1
2072
+ 47
2073
+ 49
2074
+ 8
2075
+ 2
2076
+ 11
2077
+ 15
2078
+ 45
2079
+ 0
2080
+ 9
2081
+ 43
2082
+ 2
2083
+ 43
2084
+ 3
2085
+ 13
2086
+ 71
2087
+ 10
2088
+ 47
2089
+ 9
2090
+ 100
2091
+ 47
2092
+ 49
2093
+ 11
2094
+ 0
2095
+ 13
2096
+ 5
2097
+ 20
2098
+ 0
2099
+ 49
2100
+ 12
2101
+ 0
2102
+ 20
2103
+ 1
2104
+ 47
2105
+ 49
2106
+ 8
2107
+ 2
2108
+ 5
2109
+ 20
2110
+ 0
2111
+ 49
2112
+ 13
2113
+ 0
2114
+ 20
2115
+ 1
2116
+ 47
2117
+ 49
2118
+ 14
2119
+ 2
2120
+ 20
2121
+ 0
2122
+ 49
2123
+ 5
2124
+ 0
2125
+ 47
2126
+ 49
2127
+ 15
2128
+ 3
2129
+ 15
2130
+ 8
2131
+ 132
2132
+ 5
2133
+ 20
2134
+ 0
2135
+ 49
2136
+ 12
2137
+ 0
2138
+ 20
2139
+ 1
2140
+ 47
2141
+ 49
2142
+ 8
2143
+ 2
2144
+ 5
2145
+ 20
2146
+ 0
2147
+ 49
2148
+ 13
2149
+ 0
2150
+ 20
2151
+ 1
2152
+ 47
2153
+ 49
2154
+ 14
2155
+ 2
2156
+ 20
2157
+ 0
2158
+ 49
2159
+ 5
2160
+ 0
2161
+ 49
2162
+ 10
2163
+ 3
2164
+ 11
2165
+ I
2166
+ 8
2167
+ I
2168
+ 2
2169
+ I
2170
+ 2
2171
+ I
2172
+ 2
2173
+ n
2174
+ p
2175
+ 16
2176
+ x
2177
+ 4
2178
+ Sass
2179
+ n
2180
+ x
2181
+ 6
2182
+ Script
2183
+ x
2184
+ 9
2185
+ Operation
2186
+ x
2187
+ 5
2188
+ is_a?
2189
+ x
2190
+ 8
2191
+ operator
2192
+ x
2193
+ 5
2194
+ space
2195
+ x
2196
+ 2
2197
+ ==
2198
+ x
2199
+ 15
2200
+ val_to_sass_div
2201
+ n
2202
+ x
2203
+ 3
2204
+ new
2205
+ x
2206
+ 8
2207
+ allocate
2208
+ x
2209
+ 8
2210
+ operand1
2211
+ x
2212
+ 8
2213
+ operand2
2214
+ x
2215
+ 18
2216
+ val_to_sass_concat
2217
+ x
2218
+ 10
2219
+ initialize
2220
+ p
2221
+ 21
2222
+ I
2223
+ -1
2224
+ I
2225
+ 7d
2226
+ I
2227
+ 0
2228
+ I
2229
+ 7e
2230
+ I
2231
+ 15
2232
+ I
2233
+ 7f
2234
+ I
2235
+ 2e
2236
+ I
2237
+ 81
2238
+ I
2239
+ 40
2240
+ I
2241
+ 82
2242
+ I
2243
+ 4c
2244
+ I
2245
+ 83
2246
+ I
2247
+ 58
2248
+ I
2249
+ 84
2250
+ I
2251
+ 64
2252
+ I
2253
+ 82
2254
+ I
2255
+ 70
2256
+ I
2257
+ 83
2258
+ I
2259
+ 7c
2260
+ I
2261
+ 84
2262
+ I
2263
+ 85
2264
+ x
2265
+ 53
2266
+ /Users/chris/Projects/sass/lib/sass/tree/prop_node.rb
2267
+ p
2268
+ 2
2269
+ x
2270
+ 4
2271
+ node
2272
+ x
2273
+ 4
2274
+ opts
2275
+ x
2276
+ 15
2277
+ val_to_sass_div
2278
+ M
2279
+ 1
2280
+ n
2281
+ n
2282
+ x
2283
+ 15
2284
+ val_to_sass_div
2285
+ i
2286
+ 169
2287
+ 20
2288
+ 0
2289
+ 45
2290
+ 0
2291
+ 1
2292
+ 43
2293
+ 2
2294
+ 43
2295
+ 3
2296
+ 49
2297
+ 4
2298
+ 1
2299
+ 13
2300
+ 9
2301
+ 99
2302
+ 15
2303
+ 20
2304
+ 0
2305
+ 49
2306
+ 5
2307
+ 0
2308
+ 7
2309
+ 6
2310
+ 83
2311
+ 7
2312
+ 13
2313
+ 9
2314
+ 99
2315
+ 15
2316
+ 20
2317
+ 0
2318
+ 49
2319
+ 8
2320
+ 0
2321
+ 45
2322
+ 0
2323
+ 9
2324
+ 43
2325
+ 2
2326
+ 43
2327
+ 10
2328
+ 49
2329
+ 4
2330
+ 1
2331
+ 13
2332
+ 9
2333
+ 99
2334
+ 15
2335
+ 20
2336
+ 0
2337
+ 49
2338
+ 11
2339
+ 0
2340
+ 45
2341
+ 0
2342
+ 12
2343
+ 43
2344
+ 2
2345
+ 43
2346
+ 10
2347
+ 49
2348
+ 4
2349
+ 1
2350
+ 13
2351
+ 9
2352
+ 99
2353
+ 15
2354
+ 20
2355
+ 0
2356
+ 49
2357
+ 8
2358
+ 0
2359
+ 49
2360
+ 13
2361
+ 0
2362
+ 10
2363
+ 80
2364
+ 2
2365
+ 8
2366
+ 81
2367
+ 3
2368
+ 13
2369
+ 10
2370
+ 99
2371
+ 15
2372
+ 20
2373
+ 0
2374
+ 49
2375
+ 11
2376
+ 0
2377
+ 49
2378
+ 13
2379
+ 0
2380
+ 10
2381
+ 98
2382
+ 2
2383
+ 8
2384
+ 99
2385
+ 3
2386
+ 9
2387
+ 104
2388
+ 1
2389
+ 8
2390
+ 107
2391
+ 20
2392
+ 0
2393
+ 11
2394
+ 15
2395
+ 45
2396
+ 0
2397
+ 14
2398
+ 43
2399
+ 2
2400
+ 43
2401
+ 15
2402
+ 13
2403
+ 71
2404
+ 16
2405
+ 47
2406
+ 9
2407
+ 149
2408
+ 47
2409
+ 49
2410
+ 17
2411
+ 0
2412
+ 13
2413
+ 7
2414
+ 18
2415
+ 20
2416
+ 0
2417
+ 20
2418
+ 1
2419
+ 49
2420
+ 19
2421
+ 1
2422
+ 47
2423
+ 101
2424
+ 20
2425
+ 7
2426
+ 21
2427
+ 63
2428
+ 3
2429
+ 47
2430
+ 49
2431
+ 22
2432
+ 1
2433
+ 15
2434
+ 8
2435
+ 168
2436
+ 7
2437
+ 18
2438
+ 20
2439
+ 0
2440
+ 20
2441
+ 1
2442
+ 49
2443
+ 19
2444
+ 1
2445
+ 47
2446
+ 101
2447
+ 20
2448
+ 7
2449
+ 21
2450
+ 63
2451
+ 3
2452
+ 49
2453
+ 16
2454
+ 1
2455
+ 11
2456
+ I
2457
+ 7
2458
+ I
2459
+ 2
2460
+ I
2461
+ 2
2462
+ I
2463
+ 2
2464
+ n
2465
+ p
2466
+ 23
2467
+ x
2468
+ 4
2469
+ Sass
2470
+ n
2471
+ x
2472
+ 6
2473
+ Script
2474
+ x
2475
+ 9
2476
+ Operation
2477
+ x
2478
+ 5
2479
+ is_a?
2480
+ x
2481
+ 8
2482
+ operator
2483
+ x
2484
+ 3
2485
+ div
2486
+ x
2487
+ 2
2488
+ ==
2489
+ x
2490
+ 8
2491
+ operand1
2492
+ n
2493
+ x
2494
+ 6
2495
+ Number
2496
+ x
2497
+ 8
2498
+ operand2
2499
+ n
2500
+ x
2501
+ 8
2502
+ original
2503
+ n
2504
+ x
2505
+ 6
2506
+ String
2507
+ x
2508
+ 3
2509
+ new
2510
+ x
2511
+ 8
2512
+ allocate
2513
+ s
2514
+ 1
2515
+ (
2516
+ x
2517
+ 7
2518
+ to_sass
2519
+ x
2520
+ 4
2521
+ to_s
2522
+ s
2523
+ 1
2524
+ )
2525
+ x
2526
+ 10
2527
+ initialize
2528
+ p
2529
+ 17
2530
+ I
2531
+ -1
2532
+ I
2533
+ 87
2534
+ I
2535
+ 0
2536
+ I
2537
+ 88
2538
+ I
2539
+ 1d
2540
+ I
2541
+ 89
2542
+ I
2543
+ 30
2544
+ I
2545
+ 8a
2546
+ I
2547
+ 43
2548
+ I
2549
+ 8b
2550
+ I
2551
+ 65
2552
+ I
2553
+ 88
2554
+ I
2555
+ 68
2556
+ I
2557
+ 8c
2558
+ I
2559
+ 6c
2560
+ I
2561
+ 8f
2562
+ I
2563
+ a9
2564
+ x
2565
+ 53
2566
+ /Users/chris/Projects/sass/lib/sass/tree/prop_node.rb
2567
+ p
2568
+ 2
2569
+ x
2570
+ 4
2571
+ node
2572
+ x
2573
+ 4
2574
+ opts
2575
+ p
2576
+ 11
2577
+ I
2578
+ 2
2579
+ I
2580
+ 6d
2581
+ I
2582
+ 10
2583
+ I
2584
+ 71
2585
+ I
2586
+ 14
2587
+ I
2588
+ 73
2589
+ I
2590
+ 22
2591
+ I
2592
+ 7d
2593
+ I
2594
+ 30
2595
+ I
2596
+ 87
2597
+ I
2598
+ 3e
2599
+ x
2600
+ 53
2601
+ /Users/chris/Projects/sass/lib/sass/tree/prop_node.rb
2602
+ p
2603
+ 0
2604
+ x
2605
+ 13
2606
+ attach_method
2607
+ p
2608
+ 25
2609
+ I
2610
+ 2
2611
+ I
2612
+ c
2613
+ I
2614
+ a
2615
+ I
2616
+ 13
2617
+ I
2618
+ 12
2619
+ I
2620
+ 18
2621
+ I
2622
+ 1a
2623
+ I
2624
+ 1f
2625
+ I
2626
+ 22
2627
+ I
2628
+ 2b
2629
+ I
2630
+ 2a
2631
+ I
2632
+ 31
2633
+ I
2634
+ 38
2635
+ I
2636
+ 3f
2637
+ I
2638
+ 46
2639
+ I
2640
+ 48
2641
+ I
2642
+ 54
2643
+ I
2644
+ 53
2645
+ I
2646
+ 62
2647
+ I
2648
+ 5f
2649
+ I
2650
+ 66
2651
+ I
2652
+ 61
2653
+ I
2654
+ 74
2655
+ I
2656
+ 6b
2657
+ I
2658
+ 8e
2659
+ x
2660
+ 53
2661
+ /Users/chris/Projects/sass/lib/sass/tree/prop_node.rb
2662
+ p
2663
+ 0
2664
+ x
2665
+ 13
2666
+ attach_method
2667
+ p
2668
+ 3
2669
+ I
2670
+ 2
2671
+ I
2672
+ 5
2673
+ I
2674
+ 1f
2675
+ x
2676
+ 53
2677
+ /Users/chris/Projects/sass/lib/sass/tree/prop_node.rb
2678
+ p
2679
+ 0
2680
+ x
2681
+ 13
2682
+ attach_method
2683
+ p
2684
+ 3
2685
+ I
2686
+ 0
2687
+ I
2688
+ 1
2689
+ I
2690
+ 1e
2691
+ x
2692
+ 53
2693
+ /Users/chris/Projects/sass/lib/sass/tree/prop_node.rb
2694
+ p
2695
+ 0