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
@@ -2,6 +2,8 @@
2
2
  require File.dirname(__FILE__) + '/../test_helper'
3
3
  require File.dirname(__FILE__) + '/test_helper'
4
4
 
5
+ require 'sass/plugin'
6
+
5
7
  class ImporterTest < Test::Unit::TestCase
6
8
 
7
9
  class FruitImporter < Sass::Importers::Base
@@ -38,6 +40,72 @@ class ImporterTest < Test::Unit::TestCase
38
40
  end
39
41
  end
40
42
 
43
+ # This importer maps one import to another import
44
+ # based on the mappings passed to importer's constructor.
45
+ class IndirectImporter < Sass::Importers::Base
46
+ def initialize(mappings, mtimes)
47
+ @mappings = mappings
48
+ @mtimes = mtimes
49
+ end
50
+ def find_relative(uri, base, options)
51
+ nil
52
+ end
53
+ def find(name, options)
54
+ if @mappings.has_key?(name)
55
+ Sass::Engine.new(
56
+ %Q[@import "#{@mappings[name]}";],
57
+ options.merge(
58
+ :filename => name,
59
+ :syntax => :scss,
60
+ :importer => self
61
+ )
62
+ )
63
+ end
64
+ end
65
+ def mtime(uri, options)
66
+ @mtimes.fetch(uri, @mtimes.has_key?(uri) ? Time.now : nil)
67
+ end
68
+ def key(uri, options)
69
+ [self.class.name, uri]
70
+ end
71
+ def to_s
72
+ "IndirectImporter(#{@mappings.keys.join(", ")})"
73
+ end
74
+ end
75
+
76
+ # This importer maps the import to single class
77
+ # based on the mappings passed to importer's constructor.
78
+ class ClassImporter < Sass::Importers::Base
79
+ def initialize(mappings, mtimes)
80
+ @mappings = mappings
81
+ @mtimes = mtimes
82
+ end
83
+ def find_relative(uri, base, options)
84
+ nil
85
+ end
86
+ def find(name, options)
87
+ if @mappings.has_key?(name)
88
+ Sass::Engine.new(
89
+ %Q[.#{name}{#{@mappings[name]}}],
90
+ options.merge(
91
+ :filename => name,
92
+ :syntax => :scss,
93
+ :importer => self
94
+ )
95
+ )
96
+ end
97
+ end
98
+ def mtime(uri, options)
99
+ @mtimes.fetch(uri, @mtimes.has_key?(uri) ? Time.now : nil)
100
+ end
101
+ def key(uri, options)
102
+ [self.class.name, uri]
103
+ end
104
+ def to_s
105
+ "ClassImporter(#{@mappings.keys.join(", ")})"
106
+ end
107
+ end
108
+
41
109
  def test_can_resolve_generated_imports
42
110
  scss_file = %Q{
43
111
  $pear-color: green;
@@ -79,4 +147,39 @@ CSS
79
147
  ensure
80
148
  FileUtils.rm_rf(absolutize("tmp"))
81
149
  end
150
+
151
+ def test_staleness_check_across_importers
152
+ file_system_importer = Sass::Importers::Filesystem.new(fixture_dir)
153
+ # Make sure the first import is older
154
+ indirect_importer = IndirectImporter.new({"apple" => "pear"}, {"apple" => Time.now - 1})
155
+ # Make css file is newer so the dependencies are the only way for the css file to be out of date.
156
+ FileUtils.touch(fixture_file("test_staleness_check_across_importers.css"))
157
+ # Make sure the first import is older
158
+ class_importer = ClassImporter.new({"pear" => %Q{color: green;}}, {"pear" => Time.now + 1})
159
+
160
+ options = {
161
+ :style => :compact,
162
+ :filename => fixture_file("test_staleness_check_across_importers.scss"),
163
+ :importer => file_system_importer,
164
+ :load_paths => [file_system_importer, indirect_importer, class_importer],
165
+ :syntax => :scss
166
+ }
167
+
168
+ assert_equal File.read(fixture_file("test_staleness_check_across_importers.css")),
169
+ Sass::Engine.new(File.read(fixture_file("test_staleness_check_across_importers.scss")), options).render
170
+
171
+ checker = Sass::Plugin::StalenessChecker.new(options)
172
+
173
+ assert checker.stylesheet_needs_update?(
174
+ fixture_file("test_staleness_check_across_importers.css"),
175
+ fixture_file("test_staleness_check_across_importers.scss"),
176
+ file_system_importer
177
+ )
178
+ end
179
+ def fixture_dir
180
+ File.join(File.dirname(__FILE__), "fixtures")
181
+ end
182
+ def fixture_file(path)
183
+ File.join(fixture_dir, path)
184
+ end
82
185
  end
@@ -0,0 +1,4520 @@
1
+ !RBIX
2
+ 333337424968067900
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 86
13
+ 5
14
+ 45
15
+ 0
16
+ 1
17
+ 65
18
+ 49
19
+ 2
20
+ 0
21
+ 49
22
+ 3
23
+ 1
24
+ 7
25
+ 4
26
+ 64
27
+ 81
28
+ 5
29
+ 47
30
+ 49
31
+ 6
32
+ 1
33
+ 15
34
+ 5
35
+ 45
36
+ 0
37
+ 7
38
+ 65
39
+ 49
40
+ 2
41
+ 0
42
+ 49
43
+ 3
44
+ 1
45
+ 7
46
+ 8
47
+ 64
48
+ 81
49
+ 5
50
+ 47
51
+ 49
52
+ 6
53
+ 1
54
+ 15
55
+ 5
56
+ 7
57
+ 9
58
+ 64
59
+ 47
60
+ 49
61
+ 6
62
+ 1
63
+ 15
64
+ 99
65
+ 7
66
+ 10
67
+ 45
68
+ 11
69
+ 12
70
+ 43
71
+ 13
72
+ 43
73
+ 14
74
+ 65
75
+ 49
76
+ 15
77
+ 3
78
+ 13
79
+ 99
80
+ 12
81
+ 7
82
+ 16
83
+ 12
84
+ 7
85
+ 17
86
+ 12
87
+ 65
88
+ 12
89
+ 49
90
+ 18
91
+ 4
92
+ 15
93
+ 49
94
+ 16
95
+ 0
96
+ 15
97
+ 2
98
+ 11
99
+ I
100
+ 6
101
+ I
102
+ 0
103
+ I
104
+ 0
105
+ I
106
+ 0
107
+ n
108
+ p
109
+ 19
110
+ x
111
+ 4
112
+ File
113
+ n
114
+ x
115
+ 11
116
+ active_path
117
+ x
118
+ 7
119
+ dirname
120
+ s
121
+ 15
122
+ /../test_helper
123
+ x
124
+ 1
125
+ +
126
+ x
127
+ 7
128
+ require
129
+ n
130
+ s
131
+ 12
132
+ /test_helper
133
+ s
134
+ 11
135
+ sass/plugin
136
+ x
137
+ 12
138
+ ImporterTest
139
+ x
140
+ 4
141
+ Test
142
+ n
143
+ x
144
+ 4
145
+ Unit
146
+ x
147
+ 8
148
+ TestCase
149
+ x
150
+ 10
151
+ open_class
152
+ x
153
+ 14
154
+ __class_init__
155
+ M
156
+ 1
157
+ n
158
+ n
159
+ x
160
+ 12
161
+ ImporterTest
162
+ i
163
+ 204
164
+ 5
165
+ 66
166
+ 99
167
+ 7
168
+ 0
169
+ 45
170
+ 1
171
+ 2
172
+ 43
173
+ 3
174
+ 43
175
+ 4
176
+ 65
177
+ 49
178
+ 5
179
+ 3
180
+ 13
181
+ 99
182
+ 12
183
+ 7
184
+ 6
185
+ 12
186
+ 7
187
+ 7
188
+ 12
189
+ 65
190
+ 12
191
+ 49
192
+ 8
193
+ 4
194
+ 15
195
+ 49
196
+ 6
197
+ 0
198
+ 15
199
+ 99
200
+ 7
201
+ 9
202
+ 45
203
+ 1
204
+ 10
205
+ 43
206
+ 3
207
+ 43
208
+ 11
209
+ 65
210
+ 49
211
+ 5
212
+ 3
213
+ 13
214
+ 99
215
+ 12
216
+ 7
217
+ 6
218
+ 12
219
+ 7
220
+ 12
221
+ 12
222
+ 65
223
+ 12
224
+ 49
225
+ 8
226
+ 4
227
+ 15
228
+ 49
229
+ 6
230
+ 0
231
+ 15
232
+ 99
233
+ 7
234
+ 13
235
+ 45
236
+ 1
237
+ 14
238
+ 43
239
+ 3
240
+ 43
241
+ 4
242
+ 65
243
+ 49
244
+ 5
245
+ 3
246
+ 13
247
+ 99
248
+ 12
249
+ 7
250
+ 6
251
+ 12
252
+ 7
253
+ 15
254
+ 12
255
+ 65
256
+ 12
257
+ 49
258
+ 8
259
+ 4
260
+ 15
261
+ 49
262
+ 6
263
+ 0
264
+ 15
265
+ 99
266
+ 7
267
+ 16
268
+ 45
269
+ 1
270
+ 17
271
+ 43
272
+ 3
273
+ 43
274
+ 4
275
+ 65
276
+ 49
277
+ 5
278
+ 3
279
+ 13
280
+ 99
281
+ 12
282
+ 7
283
+ 6
284
+ 12
285
+ 7
286
+ 18
287
+ 12
288
+ 65
289
+ 12
290
+ 49
291
+ 8
292
+ 4
293
+ 15
294
+ 49
295
+ 6
296
+ 0
297
+ 15
298
+ 99
299
+ 7
300
+ 19
301
+ 7
302
+ 20
303
+ 65
304
+ 67
305
+ 49
306
+ 21
307
+ 0
308
+ 49
309
+ 22
310
+ 4
311
+ 15
312
+ 99
313
+ 7
314
+ 23
315
+ 7
316
+ 24
317
+ 65
318
+ 67
319
+ 49
320
+ 21
321
+ 0
322
+ 49
323
+ 22
324
+ 4
325
+ 15
326
+ 99
327
+ 7
328
+ 25
329
+ 7
330
+ 26
331
+ 65
332
+ 67
333
+ 49
334
+ 21
335
+ 0
336
+ 49
337
+ 22
338
+ 4
339
+ 15
340
+ 99
341
+ 7
342
+ 27
343
+ 7
344
+ 28
345
+ 65
346
+ 67
347
+ 49
348
+ 21
349
+ 0
350
+ 49
351
+ 22
352
+ 4
353
+ 15
354
+ 99
355
+ 7
356
+ 29
357
+ 7
358
+ 30
359
+ 65
360
+ 67
361
+ 49
362
+ 21
363
+ 0
364
+ 49
365
+ 22
366
+ 4
367
+ 11
368
+ I
369
+ 6
370
+ I
371
+ 0
372
+ I
373
+ 0
374
+ I
375
+ 0
376
+ n
377
+ p
378
+ 31
379
+ x
380
+ 13
381
+ FruitImporter
382
+ x
383
+ 4
384
+ Sass
385
+ n
386
+ x
387
+ 9
388
+ Importers
389
+ x
390
+ 4
391
+ Base
392
+ x
393
+ 10
394
+ open_class
395
+ x
396
+ 14
397
+ __class_init__
398
+ M
399
+ 1
400
+ n
401
+ n
402
+ x
403
+ 13
404
+ FruitImporter
405
+ i
406
+ 30
407
+ 5
408
+ 66
409
+ 99
410
+ 7
411
+ 0
412
+ 7
413
+ 1
414
+ 65
415
+ 67
416
+ 49
417
+ 2
418
+ 0
419
+ 49
420
+ 3
421
+ 4
422
+ 15
423
+ 99
424
+ 7
425
+ 4
426
+ 7
427
+ 5
428
+ 65
429
+ 67
430
+ 49
431
+ 2
432
+ 0
433
+ 49
434
+ 3
435
+ 4
436
+ 11
437
+ I
438
+ 5
439
+ I
440
+ 0
441
+ I
442
+ 0
443
+ I
444
+ 0
445
+ n
446
+ p
447
+ 6
448
+ x
449
+ 4
450
+ find
451
+ M
452
+ 1
453
+ n
454
+ n
455
+ x
456
+ 4
457
+ find
458
+ i
459
+ 224
460
+ 23
461
+ 1
462
+ 10
463
+ 8
464
+ 1
465
+ 19
466
+ 1
467
+ 15
468
+ 20
469
+ 0
470
+ 7
471
+ 0
472
+ 13
473
+ 70
474
+ 9
475
+ 28
476
+ 15
477
+ 44
478
+ 43
479
+ 1
480
+ 7
481
+ 2
482
+ 78
483
+ 49
484
+ 3
485
+ 2
486
+ 6
487
+ 0
488
+ 49
489
+ 4
490
+ 1
491
+ 9
492
+ 222
493
+ 4
494
+ 5
495
+ 78
496
+ 98
497
+ 5
498
+ 2
499
+ 19
500
+ 2
501
+ 15
502
+ 4
503
+ 5
504
+ 78
505
+ 98
506
+ 5
507
+ 2
508
+ 13
509
+ 7
510
+ 6
511
+ 64
512
+ 12
513
+ 49
514
+ 7
515
+ 1
516
+ 9
517
+ 64
518
+ 15
519
+ 7
520
+ 8
521
+ 64
522
+ 8
523
+ 84
524
+ 13
525
+ 7
526
+ 9
527
+ 64
528
+ 12
529
+ 49
530
+ 7
531
+ 1
532
+ 9
533
+ 80
534
+ 15
535
+ 7
536
+ 9
537
+ 64
538
+ 8
539
+ 84
540
+ 15
541
+ 7
542
+ 10
543
+ 64
544
+ 19
545
+ 3
546
+ 15
547
+ 7
548
+ 11
549
+ 20
550
+ 2
551
+ 47
552
+ 101
553
+ 12
554
+ 7
555
+ 13
556
+ 20
557
+ 3
558
+ 47
559
+ 101
560
+ 12
561
+ 7
562
+ 14
563
+ 20
564
+ 2
565
+ 47
566
+ 101
567
+ 12
568
+ 7
569
+ 15
570
+ 20
571
+ 2
572
+ 47
573
+ 101
574
+ 12
575
+ 7
576
+ 16
577
+ 63
578
+ 9
579
+ 19
580
+ 4
581
+ 15
582
+ 45
583
+ 17
584
+ 18
585
+ 43
586
+ 19
587
+ 13
588
+ 71
589
+ 3
590
+ 47
591
+ 9
592
+ 181
593
+ 47
594
+ 49
595
+ 20
596
+ 0
597
+ 13
598
+ 20
599
+ 4
600
+ 44
601
+ 43
602
+ 21
603
+ 4
604
+ 3
605
+ 49
606
+ 22
607
+ 1
608
+ 13
609
+ 7
610
+ 23
611
+ 20
612
+ 0
613
+ 49
614
+ 24
615
+ 2
616
+ 15
617
+ 13
618
+ 7
619
+ 25
620
+ 7
621
+ 26
622
+ 49
623
+ 24
624
+ 2
625
+ 15
626
+ 13
627
+ 7
628
+ 27
629
+ 5
630
+ 49
631
+ 24
632
+ 2
633
+ 15
634
+ 47
635
+ 49
636
+ 28
637
+ 2
638
+ 15
639
+ 8
640
+ 220
641
+ 20
642
+ 4
643
+ 44
644
+ 43
645
+ 21
646
+ 4
647
+ 3
648
+ 49
649
+ 22
650
+ 1
651
+ 13
652
+ 7
653
+ 23
654
+ 20
655
+ 0
656
+ 49
657
+ 24
658
+ 2
659
+ 15
660
+ 13
661
+ 7
662
+ 25
663
+ 7
664
+ 26
665
+ 49
666
+ 24
667
+ 2
668
+ 15
669
+ 13
670
+ 7
671
+ 27
672
+ 5
673
+ 49
674
+ 24
675
+ 2
676
+ 15
677
+ 49
678
+ 3
679
+ 2
680
+ 8
681
+ 223
682
+ 1
683
+ 11
684
+ I
685
+ e
686
+ I
687
+ 5
688
+ I
689
+ 1
690
+ I
691
+ 2
692
+ n
693
+ p
694
+ 29
695
+ n
696
+ x
697
+ 6
698
+ Regexp
699
+ s
700
+ 24
701
+ fruits/(\w+)(\.s[ac]ss)?
702
+ x
703
+ 3
704
+ new
705
+ x
706
+ 2
707
+ =~
708
+ x
709
+ 24
710
+ regexp_last_match_result
711
+ s
712
+ 5
713
+ apple
714
+ x
715
+ 3
716
+ ===
717
+ s
718
+ 3
719
+ red
720
+ s
721
+ 6
722
+ orange
723
+ s
724
+ 4
725
+ blue
726
+ s
727
+ 12
728
+
729
+ $
730
+ x
731
+ 4
732
+ to_s
733
+ s
734
+ 8
735
+ -color:
736
+ s
737
+ 28
738
+ !default;
739
+ @mixin
740
+ s
741
+ 23
742
+ {
743
+ color: $
744
+ s
745
+ 28
746
+ -color;
747
+ }
748
+
749
+ x
750
+ 4
751
+ Sass
752
+ n
753
+ x
754
+ 6
755
+ Engine
756
+ x
757
+ 8
758
+ allocate
759
+ x
760
+ 4
761
+ Hash
762
+ x
763
+ 16
764
+ new_from_literal
765
+ x
766
+ 8
767
+ filename
768
+ x
769
+ 3
770
+ []=
771
+ x
772
+ 6
773
+ syntax
774
+ x
775
+ 4
776
+ scss
777
+ x
778
+ 8
779
+ importer
780
+ x
781
+ 10
782
+ initialize
783
+ p
784
+ 35
785
+ I
786
+ -1
787
+ I
788
+ a
789
+ I
790
+ 8
791
+ I
792
+ b
793
+ I
794
+ 21
795
+ I
796
+ c
797
+ I
798
+ 2a
799
+ I
800
+ d
801
+ I
802
+ 30
803
+ I
804
+ e
805
+ I
806
+ 3b
807
+ I
808
+ f
809
+ I
810
+ 40
811
+ I
812
+ 10
813
+ I
814
+ 4b
815
+ I
816
+ 11
817
+ I
818
+ 51
819
+ I
820
+ 13
821
+ I
822
+ 54
823
+ I
824
+ d
825
+ I
826
+ 57
827
+ I
828
+ 15
829
+ I
830
+ 59
831
+ I
832
+ 16
833
+ I
834
+ 67
835
+ I
836
+ 17
837
+ I
838
+ 6e
839
+ I
840
+ 18
841
+ I
842
+ 77
843
+ I
844
+ 15
845
+ I
846
+ 7a
847
+ I
848
+ 1b
849
+ I
850
+ de
851
+ I
852
+ b
853
+ I
854
+ e0
855
+ x
856
+ 53
857
+ /Users/chris/Projects/sass/test/sass/importer_test.rb
858
+ p
859
+ 5
860
+ x
861
+ 4
862
+ name
863
+ x
864
+ 7
865
+ context
866
+ x
867
+ 5
868
+ fruit
869
+ x
870
+ 5
871
+ color
872
+ x
873
+ 8
874
+ contents
875
+ x
876
+ 17
877
+ method_visibility
878
+ x
879
+ 15
880
+ add_defn_method
881
+ x
882
+ 3
883
+ key
884
+ M
885
+ 1
886
+ n
887
+ n
888
+ x
889
+ 3
890
+ key
891
+ i
892
+ 12
893
+ 5
894
+ 49
895
+ 0
896
+ 0
897
+ 49
898
+ 1
899
+ 0
900
+ 20
901
+ 0
902
+ 35
903
+ 2
904
+ 11
905
+ I
906
+ 4
907
+ I
908
+ 2
909
+ I
910
+ 2
911
+ I
912
+ 2
913
+ n
914
+ p
915
+ 2
916
+ x
917
+ 5
918
+ class
919
+ x
920
+ 4
921
+ name
922
+ p
923
+ 5
924
+ I
925
+ -1
926
+ I
927
+ 1f
928
+ I
929
+ 0
930
+ I
931
+ 20
932
+ I
933
+ c
934
+ x
935
+ 53
936
+ /Users/chris/Projects/sass/test/sass/importer_test.rb
937
+ p
938
+ 2
939
+ x
940
+ 4
941
+ name
942
+ x
943
+ 7
944
+ context
945
+ p
946
+ 5
947
+ I
948
+ 2
949
+ I
950
+ a
951
+ I
952
+ 10
953
+ I
954
+ 1f
955
+ I
956
+ 1e
957
+ x
958
+ 53
959
+ /Users/chris/Projects/sass/test/sass/importer_test.rb
960
+ p
961
+ 0
962
+ x
963
+ 13
964
+ attach_method
965
+ x
966
+ 19
967
+ ReversedExtImporter
968
+ n
969
+ x
970
+ 10
971
+ Filesystem
972
+ M
973
+ 1
974
+ n
975
+ n
976
+ x
977
+ 19
978
+ ReversedExtImporter
979
+ i
980
+ 16
981
+ 5
982
+ 66
983
+ 99
984
+ 7
985
+ 0
986
+ 7
987
+ 1
988
+ 65
989
+ 67
990
+ 49
991
+ 2
992
+ 0
993
+ 49
994
+ 3
995
+ 4
996
+ 11
997
+ I
998
+ 5
999
+ I
1000
+ 0
1001
+ I
1002
+ 0
1003
+ I
1004
+ 0
1005
+ n
1006
+ p
1007
+ 4
1008
+ x
1009
+ 10
1010
+ extensions
1011
+ M
1012
+ 1
1013
+ n
1014
+ n
1015
+ x
1016
+ 10
1017
+ extensions
1018
+ i
1019
+ 28
1020
+ 44
1021
+ 43
1022
+ 0
1023
+ 80
1024
+ 49
1025
+ 1
1026
+ 1
1027
+ 13
1028
+ 7
1029
+ 2
1030
+ 64
1031
+ 7
1032
+ 3
1033
+ 49
1034
+ 4
1035
+ 2
1036
+ 15
1037
+ 13
1038
+ 7
1039
+ 5
1040
+ 64
1041
+ 7
1042
+ 6
1043
+ 49
1044
+ 4
1045
+ 2
1046
+ 15
1047
+ 11
1048
+ I
1049
+ 4
1050
+ I
1051
+ 0
1052
+ I
1053
+ 0
1054
+ I
1055
+ 0
1056
+ n
1057
+ p
1058
+ 7
1059
+ x
1060
+ 4
1061
+ Hash
1062
+ x
1063
+ 16
1064
+ new_from_literal
1065
+ s
1066
+ 4
1067
+ sscs
1068
+ x
1069
+ 4
1070
+ scss
1071
+ x
1072
+ 3
1073
+ []=
1074
+ s
1075
+ 4
1076
+ ssas
1077
+ x
1078
+ 4
1079
+ sass
1080
+ p
1081
+ 5
1082
+ I
1083
+ -1
1084
+ I
1085
+ 26
1086
+ I
1087
+ 0
1088
+ I
1089
+ 27
1090
+ I
1091
+ 1c
1092
+ x
1093
+ 53
1094
+ /Users/chris/Projects/sass/test/sass/importer_test.rb
1095
+ p
1096
+ 0
1097
+ x
1098
+ 17
1099
+ method_visibility
1100
+ x
1101
+ 15
1102
+ add_defn_method
1103
+ p
1104
+ 3
1105
+ I
1106
+ 2
1107
+ I
1108
+ 26
1109
+ I
1110
+ 10
1111
+ x
1112
+ 53
1113
+ /Users/chris/Projects/sass/test/sass/importer_test.rb
1114
+ p
1115
+ 0
1116
+ x
1117
+ 16
1118
+ IndirectImporter
1119
+ n
1120
+ M
1121
+ 1
1122
+ n
1123
+ n
1124
+ x
1125
+ 16
1126
+ IndirectImporter
1127
+ i
1128
+ 86
1129
+ 5
1130
+ 66
1131
+ 99
1132
+ 7
1133
+ 0
1134
+ 7
1135
+ 1
1136
+ 65
1137
+ 67
1138
+ 49
1139
+ 2
1140
+ 0
1141
+ 49
1142
+ 3
1143
+ 4
1144
+ 15
1145
+ 99
1146
+ 7
1147
+ 4
1148
+ 7
1149
+ 5
1150
+ 65
1151
+ 67
1152
+ 49
1153
+ 2
1154
+ 0
1155
+ 49
1156
+ 3
1157
+ 4
1158
+ 15
1159
+ 99
1160
+ 7
1161
+ 6
1162
+ 7
1163
+ 7
1164
+ 65
1165
+ 67
1166
+ 49
1167
+ 2
1168
+ 0
1169
+ 49
1170
+ 3
1171
+ 4
1172
+ 15
1173
+ 99
1174
+ 7
1175
+ 8
1176
+ 7
1177
+ 9
1178
+ 65
1179
+ 67
1180
+ 49
1181
+ 2
1182
+ 0
1183
+ 49
1184
+ 3
1185
+ 4
1186
+ 15
1187
+ 99
1188
+ 7
1189
+ 10
1190
+ 7
1191
+ 11
1192
+ 65
1193
+ 67
1194
+ 49
1195
+ 2
1196
+ 0
1197
+ 49
1198
+ 3
1199
+ 4
1200
+ 15
1201
+ 99
1202
+ 7
1203
+ 12
1204
+ 7
1205
+ 13
1206
+ 65
1207
+ 67
1208
+ 49
1209
+ 2
1210
+ 0
1211
+ 49
1212
+ 3
1213
+ 4
1214
+ 11
1215
+ I
1216
+ 5
1217
+ I
1218
+ 0
1219
+ I
1220
+ 0
1221
+ I
1222
+ 0
1223
+ n
1224
+ p
1225
+ 14
1226
+ x
1227
+ 10
1228
+ initialize
1229
+ M
1230
+ 1
1231
+ n
1232
+ n
1233
+ x
1234
+ 10
1235
+ initialize
1236
+ i
1237
+ 10
1238
+ 20
1239
+ 0
1240
+ 38
1241
+ 0
1242
+ 15
1243
+ 20
1244
+ 1
1245
+ 38
1246
+ 1
1247
+ 11
1248
+ I
1249
+ 3
1250
+ I
1251
+ 2
1252
+ I
1253
+ 2
1254
+ I
1255
+ 2
1256
+ n
1257
+ p
1258
+ 2
1259
+ x
1260
+ 9
1261
+ @mappings
1262
+ x
1263
+ 7
1264
+ @mtimes
1265
+ p
1266
+ 7
1267
+ I
1268
+ -1
1269
+ I
1270
+ 2e
1271
+ I
1272
+ 0
1273
+ I
1274
+ 2f
1275
+ I
1276
+ 5
1277
+ I
1278
+ 30
1279
+ I
1280
+ a
1281
+ x
1282
+ 53
1283
+ /Users/chris/Projects/sass/test/sass/importer_test.rb
1284
+ p
1285
+ 2
1286
+ x
1287
+ 8
1288
+ mappings
1289
+ x
1290
+ 6
1291
+ mtimes
1292
+ x
1293
+ 17
1294
+ method_visibility
1295
+ x
1296
+ 15
1297
+ add_defn_method
1298
+ x
1299
+ 13
1300
+ find_relative
1301
+ M
1302
+ 1
1303
+ n
1304
+ n
1305
+ x
1306
+ 13
1307
+ find_relative
1308
+ i
1309
+ 2
1310
+ 1
1311
+ 11
1312
+ I
1313
+ 4
1314
+ I
1315
+ 3
1316
+ I
1317
+ 3
1318
+ I
1319
+ 3
1320
+ n
1321
+ p
1322
+ 0
1323
+ p
1324
+ 5
1325
+ I
1326
+ -1
1327
+ I
1328
+ 32
1329
+ I
1330
+ 0
1331
+ I
1332
+ 33
1333
+ I
1334
+ 2
1335
+ x
1336
+ 53
1337
+ /Users/chris/Projects/sass/test/sass/importer_test.rb
1338
+ p
1339
+ 3
1340
+ x
1341
+ 3
1342
+ uri
1343
+ x
1344
+ 4
1345
+ base
1346
+ x
1347
+ 7
1348
+ options
1349
+ x
1350
+ 4
1351
+ find
1352
+ M
1353
+ 1
1354
+ n
1355
+ n
1356
+ x
1357
+ 4
1358
+ find
1359
+ i
1360
+ 149
1361
+ 39
1362
+ 0
1363
+ 20
1364
+ 0
1365
+ 49
1366
+ 1
1367
+ 1
1368
+ 9
1369
+ 147
1370
+ 45
1371
+ 2
1372
+ 3
1373
+ 43
1374
+ 4
1375
+ 13
1376
+ 71
1377
+ 5
1378
+ 47
1379
+ 9
1380
+ 87
1381
+ 47
1382
+ 49
1383
+ 6
1384
+ 0
1385
+ 13
1386
+ 7
1387
+ 7
1388
+ 39
1389
+ 0
1390
+ 20
1391
+ 0
1392
+ 49
1393
+ 8
1394
+ 1
1395
+ 47
1396
+ 101
1397
+ 9
1398
+ 7
1399
+ 10
1400
+ 63
1401
+ 3
1402
+ 20
1403
+ 1
1404
+ 44
1405
+ 43
1406
+ 11
1407
+ 4
1408
+ 3
1409
+ 49
1410
+ 12
1411
+ 1
1412
+ 13
1413
+ 7
1414
+ 13
1415
+ 20
1416
+ 0
1417
+ 49
1418
+ 14
1419
+ 2
1420
+ 15
1421
+ 13
1422
+ 7
1423
+ 15
1424
+ 7
1425
+ 16
1426
+ 49
1427
+ 14
1428
+ 2
1429
+ 15
1430
+ 13
1431
+ 7
1432
+ 17
1433
+ 5
1434
+ 49
1435
+ 14
1436
+ 2
1437
+ 15
1438
+ 49
1439
+ 18
1440
+ 1
1441
+ 47
1442
+ 49
1443
+ 19
1444
+ 2
1445
+ 15
1446
+ 8
1447
+ 145
1448
+ 7
1449
+ 7
1450
+ 39
1451
+ 0
1452
+ 20
1453
+ 0
1454
+ 49
1455
+ 8
1456
+ 1
1457
+ 47
1458
+ 101
1459
+ 9
1460
+ 7
1461
+ 10
1462
+ 63
1463
+ 3
1464
+ 20
1465
+ 1
1466
+ 44
1467
+ 43
1468
+ 11
1469
+ 4
1470
+ 3
1471
+ 49
1472
+ 12
1473
+ 1
1474
+ 13
1475
+ 7
1476
+ 13
1477
+ 20
1478
+ 0
1479
+ 49
1480
+ 14
1481
+ 2
1482
+ 15
1483
+ 13
1484
+ 7
1485
+ 15
1486
+ 7
1487
+ 16
1488
+ 49
1489
+ 14
1490
+ 2
1491
+ 15
1492
+ 13
1493
+ 7
1494
+ 17
1495
+ 5
1496
+ 49
1497
+ 14
1498
+ 2
1499
+ 15
1500
+ 49
1501
+ 18
1502
+ 1
1503
+ 49
1504
+ 5
1505
+ 2
1506
+ 8
1507
+ 148
1508
+ 1
1509
+ 11
1510
+ I
1511
+ a
1512
+ I
1513
+ 2
1514
+ I
1515
+ 2
1516
+ I
1517
+ 2
1518
+ n
1519
+ p
1520
+ 20
1521
+ x
1522
+ 9
1523
+ @mappings
1524
+ x
1525
+ 8
1526
+ has_key?
1527
+ x
1528
+ 4
1529
+ Sass
1530
+ n
1531
+ x
1532
+ 6
1533
+ Engine
1534
+ x
1535
+ 3
1536
+ new
1537
+ x
1538
+ 8
1539
+ allocate
1540
+ s
1541
+ 9
1542
+ @import "
1543
+ x
1544
+ 2
1545
+ []
1546
+ x
1547
+ 4
1548
+ to_s
1549
+ s
1550
+ 2
1551
+ ";
1552
+ x
1553
+ 4
1554
+ Hash
1555
+ x
1556
+ 16
1557
+ new_from_literal
1558
+ x
1559
+ 8
1560
+ filename
1561
+ x
1562
+ 3
1563
+ []=
1564
+ x
1565
+ 6
1566
+ syntax
1567
+ x
1568
+ 4
1569
+ scss
1570
+ x
1571
+ 8
1572
+ importer
1573
+ x
1574
+ 5
1575
+ merge
1576
+ x
1577
+ 10
1578
+ initialize
1579
+ p
1580
+ 37
1581
+ I
1582
+ -1
1583
+ I
1584
+ 35
1585
+ I
1586
+ 0
1587
+ I
1588
+ 36
1589
+ I
1590
+ 9
1591
+ I
1592
+ 37
1593
+ I
1594
+ 19
1595
+ I
1596
+ 38
1597
+ I
1598
+ 29
1599
+ I
1600
+ 39
1601
+ I
1602
+ 2b
1603
+ I
1604
+ 3c
1605
+ I
1606
+ 34
1607
+ I
1608
+ 3a
1609
+ I
1610
+ 3d
1611
+ I
1612
+ 3b
1613
+ I
1614
+ 46
1615
+ I
1616
+ 3c
1617
+ I
1618
+ 4d
1619
+ I
1620
+ 39
1621
+ I
1622
+ 57
1623
+ I
1624
+ 38
1625
+ I
1626
+ 67
1627
+ I
1628
+ 39
1629
+ I
1630
+ 69
1631
+ I
1632
+ 3c
1633
+ I
1634
+ 72
1635
+ I
1636
+ 3a
1637
+ I
1638
+ 7b
1639
+ I
1640
+ 3b
1641
+ I
1642
+ 84
1643
+ I
1644
+ 3c
1645
+ I
1646
+ 8b
1647
+ I
1648
+ 39
1649
+ I
1650
+ 93
1651
+ I
1652
+ 36
1653
+ I
1654
+ 95
1655
+ x
1656
+ 53
1657
+ /Users/chris/Projects/sass/test/sass/importer_test.rb
1658
+ p
1659
+ 2
1660
+ x
1661
+ 4
1662
+ name
1663
+ x
1664
+ 7
1665
+ options
1666
+ x
1667
+ 5
1668
+ mtime
1669
+ M
1670
+ 1
1671
+ n
1672
+ n
1673
+ x
1674
+ 5
1675
+ mtime
1676
+ i
1677
+ 26
1678
+ 39
1679
+ 0
1680
+ 20
1681
+ 0
1682
+ 39
1683
+ 0
1684
+ 20
1685
+ 0
1686
+ 49
1687
+ 1
1688
+ 1
1689
+ 9
1690
+ 21
1691
+ 45
1692
+ 2
1693
+ 3
1694
+ 49
1695
+ 4
1696
+ 0
1697
+ 8
1698
+ 22
1699
+ 1
1700
+ 49
1701
+ 5
1702
+ 2
1703
+ 11
1704
+ I
1705
+ 6
1706
+ I
1707
+ 2
1708
+ I
1709
+ 2
1710
+ I
1711
+ 2
1712
+ n
1713
+ p
1714
+ 6
1715
+ x
1716
+ 7
1717
+ @mtimes
1718
+ x
1719
+ 8
1720
+ has_key?
1721
+ x
1722
+ 4
1723
+ Time
1724
+ n
1725
+ x
1726
+ 3
1727
+ now
1728
+ x
1729
+ 5
1730
+ fetch
1731
+ p
1732
+ 5
1733
+ I
1734
+ -1
1735
+ I
1736
+ 41
1737
+ I
1738
+ 0
1739
+ I
1740
+ 42
1741
+ I
1742
+ 1a
1743
+ x
1744
+ 53
1745
+ /Users/chris/Projects/sass/test/sass/importer_test.rb
1746
+ p
1747
+ 2
1748
+ x
1749
+ 3
1750
+ uri
1751
+ x
1752
+ 7
1753
+ options
1754
+ x
1755
+ 3
1756
+ key
1757
+ M
1758
+ 1
1759
+ n
1760
+ n
1761
+ x
1762
+ 3
1763
+ key
1764
+ i
1765
+ 12
1766
+ 5
1767
+ 49
1768
+ 0
1769
+ 0
1770
+ 49
1771
+ 1
1772
+ 0
1773
+ 20
1774
+ 0
1775
+ 35
1776
+ 2
1777
+ 11
1778
+ I
1779
+ 4
1780
+ I
1781
+ 2
1782
+ I
1783
+ 2
1784
+ I
1785
+ 2
1786
+ n
1787
+ p
1788
+ 2
1789
+ x
1790
+ 5
1791
+ class
1792
+ x
1793
+ 4
1794
+ name
1795
+ p
1796
+ 5
1797
+ I
1798
+ -1
1799
+ I
1800
+ 44
1801
+ I
1802
+ 0
1803
+ I
1804
+ 45
1805
+ I
1806
+ c
1807
+ x
1808
+ 53
1809
+ /Users/chris/Projects/sass/test/sass/importer_test.rb
1810
+ p
1811
+ 2
1812
+ x
1813
+ 3
1814
+ uri
1815
+ x
1816
+ 7
1817
+ options
1818
+ x
1819
+ 4
1820
+ to_s
1821
+ M
1822
+ 1
1823
+ n
1824
+ n
1825
+ x
1826
+ 4
1827
+ to_s
1828
+ i
1829
+ 21
1830
+ 7
1831
+ 0
1832
+ 39
1833
+ 1
1834
+ 49
1835
+ 2
1836
+ 0
1837
+ 7
1838
+ 3
1839
+ 64
1840
+ 49
1841
+ 4
1842
+ 1
1843
+ 47
1844
+ 101
1845
+ 5
1846
+ 7
1847
+ 6
1848
+ 63
1849
+ 3
1850
+ 11
1851
+ I
1852
+ 3
1853
+ I
1854
+ 0
1855
+ I
1856
+ 0
1857
+ I
1858
+ 0
1859
+ n
1860
+ p
1861
+ 7
1862
+ s
1863
+ 17
1864
+ IndirectImporter(
1865
+ x
1866
+ 9
1867
+ @mappings
1868
+ x
1869
+ 4
1870
+ keys
1871
+ s
1872
+ 2
1873
+ ,
1874
+ x
1875
+ 4
1876
+ join
1877
+ x
1878
+ 4
1879
+ to_s
1880
+ s
1881
+ 1
1882
+ )
1883
+ p
1884
+ 5
1885
+ I
1886
+ -1
1887
+ I
1888
+ 47
1889
+ I
1890
+ 0
1891
+ I
1892
+ 48
1893
+ I
1894
+ 15
1895
+ x
1896
+ 53
1897
+ /Users/chris/Projects/sass/test/sass/importer_test.rb
1898
+ p
1899
+ 0
1900
+ p
1901
+ 13
1902
+ I
1903
+ 2
1904
+ I
1905
+ 2e
1906
+ I
1907
+ 10
1908
+ I
1909
+ 32
1910
+ I
1911
+ 1e
1912
+ I
1913
+ 35
1914
+ I
1915
+ 2c
1916
+ I
1917
+ 41
1918
+ I
1919
+ 3a
1920
+ I
1921
+ 44
1922
+ I
1923
+ 48
1924
+ I
1925
+ 47
1926
+ I
1927
+ 56
1928
+ x
1929
+ 53
1930
+ /Users/chris/Projects/sass/test/sass/importer_test.rb
1931
+ p
1932
+ 0
1933
+ x
1934
+ 13
1935
+ ClassImporter
1936
+ n
1937
+ M
1938
+ 1
1939
+ n
1940
+ n
1941
+ x
1942
+ 13
1943
+ ClassImporter
1944
+ i
1945
+ 86
1946
+ 5
1947
+ 66
1948
+ 99
1949
+ 7
1950
+ 0
1951
+ 7
1952
+ 1
1953
+ 65
1954
+ 67
1955
+ 49
1956
+ 2
1957
+ 0
1958
+ 49
1959
+ 3
1960
+ 4
1961
+ 15
1962
+ 99
1963
+ 7
1964
+ 4
1965
+ 7
1966
+ 5
1967
+ 65
1968
+ 67
1969
+ 49
1970
+ 2
1971
+ 0
1972
+ 49
1973
+ 3
1974
+ 4
1975
+ 15
1976
+ 99
1977
+ 7
1978
+ 6
1979
+ 7
1980
+ 7
1981
+ 65
1982
+ 67
1983
+ 49
1984
+ 2
1985
+ 0
1986
+ 49
1987
+ 3
1988
+ 4
1989
+ 15
1990
+ 99
1991
+ 7
1992
+ 8
1993
+ 7
1994
+ 9
1995
+ 65
1996
+ 67
1997
+ 49
1998
+ 2
1999
+ 0
2000
+ 49
2001
+ 3
2002
+ 4
2003
+ 15
2004
+ 99
2005
+ 7
2006
+ 10
2007
+ 7
2008
+ 11
2009
+ 65
2010
+ 67
2011
+ 49
2012
+ 2
2013
+ 0
2014
+ 49
2015
+ 3
2016
+ 4
2017
+ 15
2018
+ 99
2019
+ 7
2020
+ 12
2021
+ 7
2022
+ 13
2023
+ 65
2024
+ 67
2025
+ 49
2026
+ 2
2027
+ 0
2028
+ 49
2029
+ 3
2030
+ 4
2031
+ 11
2032
+ I
2033
+ 5
2034
+ I
2035
+ 0
2036
+ I
2037
+ 0
2038
+ I
2039
+ 0
2040
+ n
2041
+ p
2042
+ 14
2043
+ x
2044
+ 10
2045
+ initialize
2046
+ M
2047
+ 1
2048
+ n
2049
+ n
2050
+ x
2051
+ 10
2052
+ initialize
2053
+ i
2054
+ 10
2055
+ 20
2056
+ 0
2057
+ 38
2058
+ 0
2059
+ 15
2060
+ 20
2061
+ 1
2062
+ 38
2063
+ 1
2064
+ 11
2065
+ I
2066
+ 3
2067
+ I
2068
+ 2
2069
+ I
2070
+ 2
2071
+ I
2072
+ 2
2073
+ n
2074
+ p
2075
+ 2
2076
+ x
2077
+ 9
2078
+ @mappings
2079
+ x
2080
+ 7
2081
+ @mtimes
2082
+ p
2083
+ 7
2084
+ I
2085
+ -1
2086
+ I
2087
+ 4f
2088
+ I
2089
+ 0
2090
+ I
2091
+ 50
2092
+ I
2093
+ 5
2094
+ I
2095
+ 51
2096
+ I
2097
+ a
2098
+ x
2099
+ 53
2100
+ /Users/chris/Projects/sass/test/sass/importer_test.rb
2101
+ p
2102
+ 2
2103
+ x
2104
+ 8
2105
+ mappings
2106
+ x
2107
+ 6
2108
+ mtimes
2109
+ x
2110
+ 17
2111
+ method_visibility
2112
+ x
2113
+ 15
2114
+ add_defn_method
2115
+ x
2116
+ 13
2117
+ find_relative
2118
+ M
2119
+ 1
2120
+ n
2121
+ n
2122
+ x
2123
+ 13
2124
+ find_relative
2125
+ i
2126
+ 2
2127
+ 1
2128
+ 11
2129
+ I
2130
+ 4
2131
+ I
2132
+ 3
2133
+ I
2134
+ 3
2135
+ I
2136
+ 3
2137
+ n
2138
+ p
2139
+ 0
2140
+ p
2141
+ 5
2142
+ I
2143
+ -1
2144
+ I
2145
+ 53
2146
+ I
2147
+ 0
2148
+ I
2149
+ 54
2150
+ I
2151
+ 2
2152
+ x
2153
+ 53
2154
+ /Users/chris/Projects/sass/test/sass/importer_test.rb
2155
+ p
2156
+ 3
2157
+ x
2158
+ 3
2159
+ uri
2160
+ x
2161
+ 4
2162
+ base
2163
+ x
2164
+ 7
2165
+ options
2166
+ x
2167
+ 4
2168
+ find
2169
+ M
2170
+ 1
2171
+ n
2172
+ n
2173
+ x
2174
+ 4
2175
+ find
2176
+ i
2177
+ 163
2178
+ 39
2179
+ 0
2180
+ 20
2181
+ 0
2182
+ 49
2183
+ 1
2184
+ 1
2185
+ 9
2186
+ 161
2187
+ 45
2188
+ 2
2189
+ 3
2190
+ 43
2191
+ 4
2192
+ 13
2193
+ 71
2194
+ 5
2195
+ 47
2196
+ 9
2197
+ 94
2198
+ 47
2199
+ 49
2200
+ 6
2201
+ 0
2202
+ 13
2203
+ 7
2204
+ 7
2205
+ 20
2206
+ 0
2207
+ 47
2208
+ 101
2209
+ 8
2210
+ 7
2211
+ 9
2212
+ 39
2213
+ 0
2214
+ 20
2215
+ 0
2216
+ 49
2217
+ 10
2218
+ 1
2219
+ 47
2220
+ 101
2221
+ 8
2222
+ 7
2223
+ 11
2224
+ 63
2225
+ 5
2226
+ 20
2227
+ 1
2228
+ 44
2229
+ 43
2230
+ 12
2231
+ 4
2232
+ 3
2233
+ 49
2234
+ 13
2235
+ 1
2236
+ 13
2237
+ 7
2238
+ 14
2239
+ 20
2240
+ 0
2241
+ 49
2242
+ 15
2243
+ 2
2244
+ 15
2245
+ 13
2246
+ 7
2247
+ 16
2248
+ 7
2249
+ 17
2250
+ 49
2251
+ 15
2252
+ 2
2253
+ 15
2254
+ 13
2255
+ 7
2256
+ 18
2257
+ 5
2258
+ 49
2259
+ 15
2260
+ 2
2261
+ 15
2262
+ 49
2263
+ 19
2264
+ 1
2265
+ 47
2266
+ 49
2267
+ 20
2268
+ 2
2269
+ 15
2270
+ 8
2271
+ 159
2272
+ 7
2273
+ 7
2274
+ 20
2275
+ 0
2276
+ 47
2277
+ 101
2278
+ 8
2279
+ 7
2280
+ 9
2281
+ 39
2282
+ 0
2283
+ 20
2284
+ 0
2285
+ 49
2286
+ 10
2287
+ 1
2288
+ 47
2289
+ 101
2290
+ 8
2291
+ 7
2292
+ 11
2293
+ 63
2294
+ 5
2295
+ 20
2296
+ 1
2297
+ 44
2298
+ 43
2299
+ 12
2300
+ 4
2301
+ 3
2302
+ 49
2303
+ 13
2304
+ 1
2305
+ 13
2306
+ 7
2307
+ 14
2308
+ 20
2309
+ 0
2310
+ 49
2311
+ 15
2312
+ 2
2313
+ 15
2314
+ 13
2315
+ 7
2316
+ 16
2317
+ 7
2318
+ 17
2319
+ 49
2320
+ 15
2321
+ 2
2322
+ 15
2323
+ 13
2324
+ 7
2325
+ 18
2326
+ 5
2327
+ 49
2328
+ 15
2329
+ 2
2330
+ 15
2331
+ 49
2332
+ 19
2333
+ 1
2334
+ 49
2335
+ 5
2336
+ 2
2337
+ 8
2338
+ 162
2339
+ 1
2340
+ 11
2341
+ I
2342
+ a
2343
+ I
2344
+ 2
2345
+ I
2346
+ 2
2347
+ I
2348
+ 2
2349
+ n
2350
+ p
2351
+ 21
2352
+ x
2353
+ 9
2354
+ @mappings
2355
+ x
2356
+ 8
2357
+ has_key?
2358
+ x
2359
+ 4
2360
+ Sass
2361
+ n
2362
+ x
2363
+ 6
2364
+ Engine
2365
+ x
2366
+ 3
2367
+ new
2368
+ x
2369
+ 8
2370
+ allocate
2371
+ s
2372
+ 1
2373
+ .
2374
+ x
2375
+ 4
2376
+ to_s
2377
+ s
2378
+ 1
2379
+ {
2380
+ x
2381
+ 2
2382
+ []
2383
+ s
2384
+ 1
2385
+ }
2386
+ x
2387
+ 4
2388
+ Hash
2389
+ x
2390
+ 16
2391
+ new_from_literal
2392
+ x
2393
+ 8
2394
+ filename
2395
+ x
2396
+ 3
2397
+ []=
2398
+ x
2399
+ 6
2400
+ syntax
2401
+ x
2402
+ 4
2403
+ scss
2404
+ x
2405
+ 8
2406
+ importer
2407
+ x
2408
+ 5
2409
+ merge
2410
+ x
2411
+ 10
2412
+ initialize
2413
+ p
2414
+ 37
2415
+ I
2416
+ -1
2417
+ I
2418
+ 56
2419
+ I
2420
+ 0
2421
+ I
2422
+ 57
2423
+ I
2424
+ 9
2425
+ I
2426
+ 58
2427
+ I
2428
+ 19
2429
+ I
2430
+ 59
2431
+ I
2432
+ 30
2433
+ I
2434
+ 5a
2435
+ I
2436
+ 32
2437
+ I
2438
+ 5d
2439
+ I
2440
+ 3b
2441
+ I
2442
+ 5b
2443
+ I
2444
+ 44
2445
+ I
2446
+ 5c
2447
+ I
2448
+ 4d
2449
+ I
2450
+ 5d
2451
+ I
2452
+ 54
2453
+ I
2454
+ 5a
2455
+ I
2456
+ 5e
2457
+ I
2458
+ 59
2459
+ I
2460
+ 75
2461
+ I
2462
+ 5a
2463
+ I
2464
+ 77
2465
+ I
2466
+ 5d
2467
+ I
2468
+ 80
2469
+ I
2470
+ 5b
2471
+ I
2472
+ 89
2473
+ I
2474
+ 5c
2475
+ I
2476
+ 92
2477
+ I
2478
+ 5d
2479
+ I
2480
+ 99
2481
+ I
2482
+ 5a
2483
+ I
2484
+ a1
2485
+ I
2486
+ 57
2487
+ I
2488
+ a3
2489
+ x
2490
+ 53
2491
+ /Users/chris/Projects/sass/test/sass/importer_test.rb
2492
+ p
2493
+ 2
2494
+ x
2495
+ 4
2496
+ name
2497
+ x
2498
+ 7
2499
+ options
2500
+ x
2501
+ 5
2502
+ mtime
2503
+ M
2504
+ 1
2505
+ n
2506
+ n
2507
+ x
2508
+ 5
2509
+ mtime
2510
+ i
2511
+ 26
2512
+ 39
2513
+ 0
2514
+ 20
2515
+ 0
2516
+ 39
2517
+ 0
2518
+ 20
2519
+ 0
2520
+ 49
2521
+ 1
2522
+ 1
2523
+ 9
2524
+ 21
2525
+ 45
2526
+ 2
2527
+ 3
2528
+ 49
2529
+ 4
2530
+ 0
2531
+ 8
2532
+ 22
2533
+ 1
2534
+ 49
2535
+ 5
2536
+ 2
2537
+ 11
2538
+ I
2539
+ 6
2540
+ I
2541
+ 2
2542
+ I
2543
+ 2
2544
+ I
2545
+ 2
2546
+ n
2547
+ p
2548
+ 6
2549
+ x
2550
+ 7
2551
+ @mtimes
2552
+ x
2553
+ 8
2554
+ has_key?
2555
+ x
2556
+ 4
2557
+ Time
2558
+ n
2559
+ x
2560
+ 3
2561
+ now
2562
+ x
2563
+ 5
2564
+ fetch
2565
+ p
2566
+ 5
2567
+ I
2568
+ -1
2569
+ I
2570
+ 62
2571
+ I
2572
+ 0
2573
+ I
2574
+ 63
2575
+ I
2576
+ 1a
2577
+ x
2578
+ 53
2579
+ /Users/chris/Projects/sass/test/sass/importer_test.rb
2580
+ p
2581
+ 2
2582
+ x
2583
+ 3
2584
+ uri
2585
+ x
2586
+ 7
2587
+ options
2588
+ x
2589
+ 3
2590
+ key
2591
+ M
2592
+ 1
2593
+ n
2594
+ n
2595
+ x
2596
+ 3
2597
+ key
2598
+ i
2599
+ 12
2600
+ 5
2601
+ 49
2602
+ 0
2603
+ 0
2604
+ 49
2605
+ 1
2606
+ 0
2607
+ 20
2608
+ 0
2609
+ 35
2610
+ 2
2611
+ 11
2612
+ I
2613
+ 4
2614
+ I
2615
+ 2
2616
+ I
2617
+ 2
2618
+ I
2619
+ 2
2620
+ n
2621
+ p
2622
+ 2
2623
+ x
2624
+ 5
2625
+ class
2626
+ x
2627
+ 4
2628
+ name
2629
+ p
2630
+ 5
2631
+ I
2632
+ -1
2633
+ I
2634
+ 65
2635
+ I
2636
+ 0
2637
+ I
2638
+ 66
2639
+ I
2640
+ c
2641
+ x
2642
+ 53
2643
+ /Users/chris/Projects/sass/test/sass/importer_test.rb
2644
+ p
2645
+ 2
2646
+ x
2647
+ 3
2648
+ uri
2649
+ x
2650
+ 7
2651
+ options
2652
+ x
2653
+ 4
2654
+ to_s
2655
+ M
2656
+ 1
2657
+ n
2658
+ n
2659
+ x
2660
+ 4
2661
+ to_s
2662
+ i
2663
+ 21
2664
+ 7
2665
+ 0
2666
+ 39
2667
+ 1
2668
+ 49
2669
+ 2
2670
+ 0
2671
+ 7
2672
+ 3
2673
+ 64
2674
+ 49
2675
+ 4
2676
+ 1
2677
+ 47
2678
+ 101
2679
+ 5
2680
+ 7
2681
+ 6
2682
+ 63
2683
+ 3
2684
+ 11
2685
+ I
2686
+ 3
2687
+ I
2688
+ 0
2689
+ I
2690
+ 0
2691
+ I
2692
+ 0
2693
+ n
2694
+ p
2695
+ 7
2696
+ s
2697
+ 14
2698
+ ClassImporter(
2699
+ x
2700
+ 9
2701
+ @mappings
2702
+ x
2703
+ 4
2704
+ keys
2705
+ s
2706
+ 2
2707
+ ,
2708
+ x
2709
+ 4
2710
+ join
2711
+ x
2712
+ 4
2713
+ to_s
2714
+ s
2715
+ 1
2716
+ )
2717
+ p
2718
+ 5
2719
+ I
2720
+ -1
2721
+ I
2722
+ 68
2723
+ I
2724
+ 0
2725
+ I
2726
+ 69
2727
+ I
2728
+ 15
2729
+ x
2730
+ 53
2731
+ /Users/chris/Projects/sass/test/sass/importer_test.rb
2732
+ p
2733
+ 0
2734
+ p
2735
+ 13
2736
+ I
2737
+ 2
2738
+ I
2739
+ 4f
2740
+ I
2741
+ 10
2742
+ I
2743
+ 53
2744
+ I
2745
+ 1e
2746
+ I
2747
+ 56
2748
+ I
2749
+ 2c
2750
+ I
2751
+ 62
2752
+ I
2753
+ 3a
2754
+ I
2755
+ 65
2756
+ I
2757
+ 48
2758
+ I
2759
+ 68
2760
+ I
2761
+ 56
2762
+ x
2763
+ 53
2764
+ /Users/chris/Projects/sass/test/sass/importer_test.rb
2765
+ p
2766
+ 0
2767
+ x
2768
+ 34
2769
+ test_can_resolve_generated_imports
2770
+ M
2771
+ 1
2772
+ n
2773
+ n
2774
+ x
2775
+ 34
2776
+ test_can_resolve_generated_imports
2777
+ i
2778
+ 119
2779
+ 7
2780
+ 0
2781
+ 64
2782
+ 19
2783
+ 0
2784
+ 15
2785
+ 7
2786
+ 1
2787
+ 64
2788
+ 19
2789
+ 1
2790
+ 15
2791
+ 44
2792
+ 43
2793
+ 2
2794
+ 4
2795
+ 3
2796
+ 49
2797
+ 3
2798
+ 1
2799
+ 13
2800
+ 7
2801
+ 4
2802
+ 7
2803
+ 5
2804
+ 49
2805
+ 6
2806
+ 2
2807
+ 15
2808
+ 13
2809
+ 7
2810
+ 7
2811
+ 45
2812
+ 8
2813
+ 9
2814
+ 13
2815
+ 71
2816
+ 10
2817
+ 47
2818
+ 9
2819
+ 53
2820
+ 47
2821
+ 49
2822
+ 11
2823
+ 0
2824
+ 13
2825
+ 47
2826
+ 49
2827
+ 12
2828
+ 0
2829
+ 15
2830
+ 8
2831
+ 56
2832
+ 49
2833
+ 10
2834
+ 0
2835
+ 35
2836
+ 1
2837
+ 49
2838
+ 6
2839
+ 2
2840
+ 15
2841
+ 13
2842
+ 7
2843
+ 13
2844
+ 7
2845
+ 14
2846
+ 49
2847
+ 6
2848
+ 2
2849
+ 15
2850
+ 19
2851
+ 2
2852
+ 15
2853
+ 5
2854
+ 20
2855
+ 1
2856
+ 45
2857
+ 15
2858
+ 16
2859
+ 43
2860
+ 17
2861
+ 13
2862
+ 71
2863
+ 10
2864
+ 47
2865
+ 9
2866
+ 104
2867
+ 47
2868
+ 49
2869
+ 11
2870
+ 0
2871
+ 13
2872
+ 20
2873
+ 0
2874
+ 20
2875
+ 2
2876
+ 47
2877
+ 49
2878
+ 12
2879
+ 2
2880
+ 15
2881
+ 8
2882
+ 111
2883
+ 20
2884
+ 0
2885
+ 20
2886
+ 2
2887
+ 49
2888
+ 10
2889
+ 2
2890
+ 49
2891
+ 18
2892
+ 0
2893
+ 47
2894
+ 49
2895
+ 19
2896
+ 2
2897
+ 11
2898
+ I
2899
+ 9
2900
+ I
2901
+ 3
2902
+ I
2903
+ 0
2904
+ I
2905
+ 0
2906
+ n
2907
+ p
2908
+ 20
2909
+ s
2910
+ 208
2911
+
2912
+ $pear-color: green;
2913
+ @import "fruits/apple"; @import "fruits/orange"; @import "fruits/pear";
2914
+ .apple { @include apple; }
2915
+ .orange { @include orange; }
2916
+ .pear { @include pear; }
2917
+
2918
+ s
2919
+ 76
2920
+ .apple { color: red; }
2921
+
2922
+ .orange { color: orange; }
2923
+
2924
+ .pear { color: green; }
2925
+
2926
+ x
2927
+ 4
2928
+ Hash
2929
+ x
2930
+ 16
2931
+ new_from_literal
2932
+ x
2933
+ 5
2934
+ style
2935
+ x
2936
+ 7
2937
+ compact
2938
+ x
2939
+ 3
2940
+ []=
2941
+ x
2942
+ 10
2943
+ load_paths
2944
+ x
2945
+ 13
2946
+ FruitImporter
2947
+ n
2948
+ x
2949
+ 3
2950
+ new
2951
+ x
2952
+ 8
2953
+ allocate
2954
+ x
2955
+ 10
2956
+ initialize
2957
+ x
2958
+ 6
2959
+ syntax
2960
+ x
2961
+ 4
2962
+ scss
2963
+ x
2964
+ 4
2965
+ Sass
2966
+ n
2967
+ x
2968
+ 6
2969
+ Engine
2970
+ x
2971
+ 6
2972
+ render
2973
+ x
2974
+ 12
2975
+ assert_equal
2976
+ p
2977
+ 11
2978
+ I
2979
+ -1
2980
+ I
2981
+ 6d
2982
+ I
2983
+ 0
2984
+ I
2985
+ 6e
2986
+ I
2987
+ 6
2988
+ I
2989
+ 75
2990
+ I
2991
+ c
2992
+ I
2993
+ 7c
2994
+ I
2995
+ 4a
2996
+ I
2997
+ 7d
2998
+ I
2999
+ 77
3000
+ x
3001
+ 53
3002
+ /Users/chris/Projects/sass/test/sass/importer_test.rb
3003
+ p
3004
+ 3
3005
+ x
3006
+ 9
3007
+ scss_file
3008
+ x
3009
+ 8
3010
+ css_file
3011
+ x
3012
+ 7
3013
+ options
3014
+ x
3015
+ 17
3016
+ method_visibility
3017
+ x
3018
+ 15
3019
+ add_defn_method
3020
+ x
3021
+ 24
3022
+ test_extension_overrides
3023
+ M
3024
+ 1
3025
+ n
3026
+ n
3027
+ x
3028
+ 24
3029
+ test_extension_overrides
3030
+ i
3031
+ 231
3032
+ 29
3033
+ 197
3034
+ 1
3035
+ 26
3036
+ 93
3037
+ 0
3038
+ 15
3039
+ 45
3040
+ 0
3041
+ 1
3042
+ 5
3043
+ 7
3044
+ 2
3045
+ 64
3046
+ 47
3047
+ 49
3048
+ 3
3049
+ 1
3050
+ 49
3051
+ 4
3052
+ 1
3053
+ 15
3054
+ 5
3055
+ 5
3056
+ 7
3057
+ 5
3058
+ 64
3059
+ 47
3060
+ 49
3061
+ 3
3062
+ 1
3063
+ 7
3064
+ 6
3065
+ 64
3066
+ 56
3067
+ 7
3068
+ 47
3069
+ 50
3070
+ 8
3071
+ 2
3072
+ 15
3073
+ 5
3074
+ 5
3075
+ 7
3076
+ 9
3077
+ 64
3078
+ 47
3079
+ 49
3080
+ 3
3081
+ 1
3082
+ 7
3083
+ 6
3084
+ 64
3085
+ 56
3086
+ 10
3087
+ 47
3088
+ 50
3089
+ 8
3090
+ 2
3091
+ 15
3092
+ 7
3093
+ 11
3094
+ 64
3095
+ 19
3096
+ 0
3097
+ 15
3098
+ 7
3099
+ 12
3100
+ 64
3101
+ 19
3102
+ 1
3103
+ 15
3104
+ 44
3105
+ 43
3106
+ 13
3107
+ 4
3108
+ 3
3109
+ 49
3110
+ 14
3111
+ 1
3112
+ 13
3113
+ 7
3114
+ 15
3115
+ 7
3116
+ 16
3117
+ 49
3118
+ 17
3119
+ 2
3120
+ 15
3121
+ 13
3122
+ 7
3123
+ 18
3124
+ 45
3125
+ 19
3126
+ 20
3127
+ 13
3128
+ 71
3129
+ 21
3130
+ 47
3131
+ 9
3132
+ 121
3133
+ 47
3134
+ 49
3135
+ 22
3136
+ 0
3137
+ 13
3138
+ 5
3139
+ 7
3140
+ 2
3141
+ 64
3142
+ 47
3143
+ 49
3144
+ 3
3145
+ 1
3146
+ 47
3147
+ 49
3148
+ 23
3149
+ 1
3150
+ 15
3151
+ 8
3152
+ 132
3153
+ 5
3154
+ 7
3155
+ 2
3156
+ 64
3157
+ 47
3158
+ 49
3159
+ 3
3160
+ 1
3161
+ 49
3162
+ 21
3163
+ 1
3164
+ 35
3165
+ 1
3166
+ 49
3167
+ 17
3168
+ 2
3169
+ 15
3170
+ 13
3171
+ 7
3172
+ 24
3173
+ 7
3174
+ 25
3175
+ 49
3176
+ 17
3177
+ 2
3178
+ 15
3179
+ 19
3180
+ 2
3181
+ 15
3182
+ 5
3183
+ 20
3184
+ 1
3185
+ 45
3186
+ 26
3187
+ 27
3188
+ 43
3189
+ 28
3190
+ 13
3191
+ 71
3192
+ 21
3193
+ 47
3194
+ 9
3195
+ 180
3196
+ 47
3197
+ 49
3198
+ 22
3199
+ 0
3200
+ 13
3201
+ 20
3202
+ 0
3203
+ 20
3204
+ 2
3205
+ 47
3206
+ 49
3207
+ 23
3208
+ 2
3209
+ 15
3210
+ 8
3211
+ 187
3212
+ 20
3213
+ 0
3214
+ 20
3215
+ 2
3216
+ 49
3217
+ 21
3218
+ 2
3219
+ 49
3220
+ 29
3221
+ 0
3222
+ 47
3223
+ 49
3224
+ 30
3225
+ 2
3226
+ 30
3227
+ 8
3228
+ 215
3229
+ 26
3230
+ 45
3231
+ 0
3232
+ 31
3233
+ 5
3234
+ 7
3235
+ 2
3236
+ 64
3237
+ 47
3238
+ 49
3239
+ 3
3240
+ 1
3241
+ 49
3242
+ 32
3243
+ 1
3244
+ 15
3245
+ 27
3246
+ 34
3247
+ 45
3248
+ 0
3249
+ 33
3250
+ 5
3251
+ 7
3252
+ 2
3253
+ 64
3254
+ 47
3255
+ 49
3256
+ 3
3257
+ 1
3258
+ 49
3259
+ 32
3260
+ 1
3261
+ 15
3262
+ 11
3263
+ I
3264
+ b
3265
+ I
3266
+ 3
3267
+ I
3268
+ 0
3269
+ I
3270
+ 0
3271
+ n
3272
+ p
3273
+ 34
3274
+ x
3275
+ 9
3276
+ FileUtils
3277
+ n
3278
+ s
3279
+ 3
3280
+ tmp
3281
+ x
3282
+ 10
3283
+ absolutize
3284
+ x
3285
+ 7
3286
+ mkdir_p
3287
+ s
3288
+ 12
3289
+ tmp/foo.ssas
3290
+ s
3291
+ 1
3292
+ w
3293
+ M
3294
+ 1
3295
+ p
3296
+ 2
3297
+ x
3298
+ 9
3299
+ for_block
3300
+ t
3301
+ n
3302
+ x
3303
+ 24
3304
+ test_extension_overrides
3305
+ i
3306
+ 13
3307
+ 57
3308
+ 19
3309
+ 0
3310
+ 15
3311
+ 20
3312
+ 0
3313
+ 7
3314
+ 0
3315
+ 64
3316
+ 49
3317
+ 1
3318
+ 1
3319
+ 11
3320
+ I
3321
+ 4
3322
+ I
3323
+ 1
3324
+ I
3325
+ 1
3326
+ I
3327
+ 1
3328
+ n
3329
+ p
3330
+ 2
3331
+ s
3332
+ 22
3333
+ .foo
3334
+ reversed: true
3335
+
3336
+ x
3337
+ 5
3338
+ write
3339
+ p
3340
+ 3
3341
+ I
3342
+ 0
3343
+ I
3344
+ 82
3345
+ I
3346
+ d
3347
+ x
3348
+ 53
3349
+ /Users/chris/Projects/sass/test/sass/importer_test.rb
3350
+ p
3351
+ 1
3352
+ x
3353
+ 1
3354
+ f
3355
+ x
3356
+ 4
3357
+ open
3358
+ s
3359
+ 12
3360
+ tmp/bar.sscs
3361
+ M
3362
+ 1
3363
+ p
3364
+ 2
3365
+ x
3366
+ 9
3367
+ for_block
3368
+ t
3369
+ n
3370
+ x
3371
+ 24
3372
+ test_extension_overrides
3373
+ i
3374
+ 13
3375
+ 57
3376
+ 19
3377
+ 0
3378
+ 15
3379
+ 20
3380
+ 0
3381
+ 7
3382
+ 0
3383
+ 64
3384
+ 49
3385
+ 1
3386
+ 1
3387
+ 11
3388
+ I
3389
+ 4
3390
+ I
3391
+ 1
3392
+ I
3393
+ 1
3394
+ I
3395
+ 1
3396
+ n
3397
+ p
3398
+ 2
3399
+ s
3400
+ 22
3401
+ .bar {reversed: true}
3402
+
3403
+ x
3404
+ 5
3405
+ write
3406
+ p
3407
+ 3
3408
+ I
3409
+ 0
3410
+ I
3411
+ 83
3412
+ I
3413
+ d
3414
+ x
3415
+ 53
3416
+ /Users/chris/Projects/sass/test/sass/importer_test.rb
3417
+ p
3418
+ 1
3419
+ x
3420
+ 1
3421
+ f
3422
+ s
3423
+ 71
3424
+
3425
+ @import "foo", "bar";
3426
+ @import "foo.ssas", "bar.sscs";
3427
+
3428
+ s
3429
+ 103
3430
+ .foo { reversed: true; }
3431
+
3432
+ .bar { reversed: true; }
3433
+
3434
+ .foo { reversed: true; }
3435
+
3436
+ .bar { reversed: true; }
3437
+
3438
+ x
3439
+ 4
3440
+ Hash
3441
+ x
3442
+ 16
3443
+ new_from_literal
3444
+ x
3445
+ 5
3446
+ style
3447
+ x
3448
+ 7
3449
+ compact
3450
+ x
3451
+ 3
3452
+ []=
3453
+ x
3454
+ 10
3455
+ load_paths
3456
+ x
3457
+ 19
3458
+ ReversedExtImporter
3459
+ n
3460
+ x
3461
+ 3
3462
+ new
3463
+ x
3464
+ 8
3465
+ allocate
3466
+ x
3467
+ 10
3468
+ initialize
3469
+ x
3470
+ 6
3471
+ syntax
3472
+ x
3473
+ 4
3474
+ scss
3475
+ x
3476
+ 4
3477
+ Sass
3478
+ n
3479
+ x
3480
+ 6
3481
+ Engine
3482
+ x
3483
+ 6
3484
+ render
3485
+ x
3486
+ 12
3487
+ assert_equal
3488
+ n
3489
+ x
3490
+ 5
3491
+ rm_rf
3492
+ n
3493
+ p
3494
+ 19
3495
+ I
3496
+ -1
3497
+ I
3498
+ 80
3499
+ I
3500
+ 0
3501
+ I
3502
+ 81
3503
+ I
3504
+ 16
3505
+ I
3506
+ 82
3507
+ I
3508
+ 29
3509
+ I
3510
+ 83
3511
+ I
3512
+ 3c
3513
+ I
3514
+ 84
3515
+ I
3516
+ 42
3517
+ I
3518
+ 88
3519
+ I
3520
+ 48
3521
+ I
3522
+ 91
3523
+ I
3524
+ 96
3525
+ I
3526
+ 92
3527
+ I
3528
+ c6
3529
+ I
3530
+ 94
3531
+ I
3532
+ e7
3533
+ x
3534
+ 53
3535
+ /Users/chris/Projects/sass/test/sass/importer_test.rb
3536
+ p
3537
+ 3
3538
+ x
3539
+ 9
3540
+ scss_file
3541
+ x
3542
+ 8
3543
+ css_file
3544
+ x
3545
+ 7
3546
+ options
3547
+ x
3548
+ 37
3549
+ test_staleness_check_across_importers
3550
+ M
3551
+ 1
3552
+ n
3553
+ n
3554
+ x
3555
+ 37
3556
+ test_staleness_check_across_importers
3557
+ i
3558
+ 487
3559
+ 45
3560
+ 0
3561
+ 1
3562
+ 43
3563
+ 2
3564
+ 43
3565
+ 3
3566
+ 13
3567
+ 71
3568
+ 4
3569
+ 47
3570
+ 9
3571
+ 28
3572
+ 47
3573
+ 49
3574
+ 5
3575
+ 0
3576
+ 13
3577
+ 5
3578
+ 48
3579
+ 6
3580
+ 47
3581
+ 49
3582
+ 7
3583
+ 1
3584
+ 15
3585
+ 8
3586
+ 34
3587
+ 5
3588
+ 48
3589
+ 6
3590
+ 49
3591
+ 4
3592
+ 1
3593
+ 19
3594
+ 0
3595
+ 15
3596
+ 45
3597
+ 8
3598
+ 9
3599
+ 13
3600
+ 71
3601
+ 4
3602
+ 47
3603
+ 9
3604
+ 100
3605
+ 47
3606
+ 49
3607
+ 5
3608
+ 0
3609
+ 13
3610
+ 44
3611
+ 43
3612
+ 10
3613
+ 79
3614
+ 49
3615
+ 11
3616
+ 1
3617
+ 13
3618
+ 7
3619
+ 12
3620
+ 64
3621
+ 7
3622
+ 13
3623
+ 64
3624
+ 49
3625
+ 14
3626
+ 2
3627
+ 15
3628
+ 44
3629
+ 43
3630
+ 10
3631
+ 79
3632
+ 49
3633
+ 11
3634
+ 1
3635
+ 13
3636
+ 7
3637
+ 12
3638
+ 64
3639
+ 45
3640
+ 15
3641
+ 16
3642
+ 49
3643
+ 17
3644
+ 0
3645
+ 79
3646
+ 82
3647
+ 18
3648
+ 49
3649
+ 14
3650
+ 2
3651
+ 15
3652
+ 47
3653
+ 49
3654
+ 7
3655
+ 2
3656
+ 15
3657
+ 8
3658
+ 145
3659
+ 44
3660
+ 43
3661
+ 10
3662
+ 79
3663
+ 49
3664
+ 11
3665
+ 1
3666
+ 13
3667
+ 7
3668
+ 12
3669
+ 64
3670
+ 7
3671
+ 13
3672
+ 64
3673
+ 49
3674
+ 14
3675
+ 2
3676
+ 15
3677
+ 44
3678
+ 43
3679
+ 10
3680
+ 79
3681
+ 49
3682
+ 11
3683
+ 1
3684
+ 13
3685
+ 7
3686
+ 12
3687
+ 64
3688
+ 45
3689
+ 15
3690
+ 19
3691
+ 49
3692
+ 17
3693
+ 0
3694
+ 79
3695
+ 82
3696
+ 18
3697
+ 49
3698
+ 14
3699
+ 2
3700
+ 15
3701
+ 49
3702
+ 4
3703
+ 2
3704
+ 19
3705
+ 1
3706
+ 15
3707
+ 45
3708
+ 20
3709
+ 21
3710
+ 5
3711
+ 7
3712
+ 22
3713
+ 64
3714
+ 47
3715
+ 49
3716
+ 23
3717
+ 1
3718
+ 49
3719
+ 24
3720
+ 1
3721
+ 15
3722
+ 45
3723
+ 25
3724
+ 26
3725
+ 13
3726
+ 71
3727
+ 4
3728
+ 47
3729
+ 9
3730
+ 226
3731
+ 47
3732
+ 49
3733
+ 5
3734
+ 0
3735
+ 13
3736
+ 44
3737
+ 43
3738
+ 10
3739
+ 79
3740
+ 49
3741
+ 11
3742
+ 1
3743
+ 13
3744
+ 7
3745
+ 13
3746
+ 64
3747
+ 7
3748
+ 27
3749
+ 64
3750
+ 49
3751
+ 14
3752
+ 2
3753
+ 15
3754
+ 44
3755
+ 43
3756
+ 10
3757
+ 79
3758
+ 49
3759
+ 11
3760
+ 1
3761
+ 13
3762
+ 7
3763
+ 13
3764
+ 64
3765
+ 45
3766
+ 15
3767
+ 28
3768
+ 49
3769
+ 17
3770
+ 0
3771
+ 79
3772
+ 81
3773
+ 29
3774
+ 49
3775
+ 14
3776
+ 2
3777
+ 15
3778
+ 47
3779
+ 49
3780
+ 7
3781
+ 2
3782
+ 15
3783
+ 8
3784
+ 271
3785
+ 44
3786
+ 43
3787
+ 10
3788
+ 79
3789
+ 49
3790
+ 11
3791
+ 1
3792
+ 13
3793
+ 7
3794
+ 13
3795
+ 64
3796
+ 7
3797
+ 27
3798
+ 64
3799
+ 49
3800
+ 14
3801
+ 2
3802
+ 15
3803
+ 44
3804
+ 43
3805
+ 10
3806
+ 79
3807
+ 49
3808
+ 11
3809
+ 1
3810
+ 13
3811
+ 7
3812
+ 13
3813
+ 64
3814
+ 45
3815
+ 15
3816
+ 30
3817
+ 49
3818
+ 17
3819
+ 0
3820
+ 79
3821
+ 81
3822
+ 29
3823
+ 49
3824
+ 14
3825
+ 2
3826
+ 15
3827
+ 49
3828
+ 4
3829
+ 2
3830
+ 19
3831
+ 2
3832
+ 15
3833
+ 44
3834
+ 43
3835
+ 10
3836
+ 4
3837
+ 5
3838
+ 49
3839
+ 11
3840
+ 1
3841
+ 13
3842
+ 7
3843
+ 31
3844
+ 7
3845
+ 32
3846
+ 49
3847
+ 14
3848
+ 2
3849
+ 15
3850
+ 13
3851
+ 7
3852
+ 33
3853
+ 5
3854
+ 7
3855
+ 34
3856
+ 64
3857
+ 47
3858
+ 49
3859
+ 23
3860
+ 1
3861
+ 49
3862
+ 14
3863
+ 2
3864
+ 15
3865
+ 13
3866
+ 7
3867
+ 35
3868
+ 20
3869
+ 0
3870
+ 49
3871
+ 14
3872
+ 2
3873
+ 15
3874
+ 13
3875
+ 7
3876
+ 36
3877
+ 20
3878
+ 0
3879
+ 20
3880
+ 1
3881
+ 20
3882
+ 2
3883
+ 35
3884
+ 3
3885
+ 49
3886
+ 14
3887
+ 2
3888
+ 15
3889
+ 13
3890
+ 7
3891
+ 37
3892
+ 7
3893
+ 38
3894
+ 49
3895
+ 14
3896
+ 2
3897
+ 15
3898
+ 19
3899
+ 3
3900
+ 15
3901
+ 5
3902
+ 45
3903
+ 39
3904
+ 40
3905
+ 5
3906
+ 7
3907
+ 22
3908
+ 64
3909
+ 47
3910
+ 49
3911
+ 23
3912
+ 1
3913
+ 49
3914
+ 41
3915
+ 1
3916
+ 45
3917
+ 0
3918
+ 42
3919
+ 43
3920
+ 43
3921
+ 13
3922
+ 71
3923
+ 4
3924
+ 47
3925
+ 9
3926
+ 396
3927
+ 47
3928
+ 49
3929
+ 5
3930
+ 0
3931
+ 13
3932
+ 45
3933
+ 39
3934
+ 44
3935
+ 5
3936
+ 7
3937
+ 34
3938
+ 64
3939
+ 47
3940
+ 49
3941
+ 23
3942
+ 1
3943
+ 49
3944
+ 41
3945
+ 1
3946
+ 20
3947
+ 3
3948
+ 47
3949
+ 49
3950
+ 7
3951
+ 2
3952
+ 15
3953
+ 8
3954
+ 415
3955
+ 45
3956
+ 39
3957
+ 45
3958
+ 5
3959
+ 7
3960
+ 34
3961
+ 64
3962
+ 47
3963
+ 49
3964
+ 23
3965
+ 1
3966
+ 49
3967
+ 41
3968
+ 1
3969
+ 20
3970
+ 3
3971
+ 49
3972
+ 4
3973
+ 2
3974
+ 49
3975
+ 46
3976
+ 0
3977
+ 47
3978
+ 49
3979
+ 47
3980
+ 2
3981
+ 15
3982
+ 45
3983
+ 0
3984
+ 48
3985
+ 43
3986
+ 49
3987
+ 43
3988
+ 50
3989
+ 13
3990
+ 71
3991
+ 4
3992
+ 47
3993
+ 9
3994
+ 450
3995
+ 47
3996
+ 49
3997
+ 5
3998
+ 0
3999
+ 13
4000
+ 20
4001
+ 3
4002
+ 47
4003
+ 49
4004
+ 7
4005
+ 1
4006
+ 15
4007
+ 8
4008
+ 455
4009
+ 20
4010
+ 3
4011
+ 49
4012
+ 4
4013
+ 1
4014
+ 19
4015
+ 4
4016
+ 15
4017
+ 5
4018
+ 20
4019
+ 4
4020
+ 5
4021
+ 7
4022
+ 22
4023
+ 64
4024
+ 47
4025
+ 49
4026
+ 23
4027
+ 1
4028
+ 5
4029
+ 7
4030
+ 34
4031
+ 64
4032
+ 47
4033
+ 49
4034
+ 23
4035
+ 1
4036
+ 20
4037
+ 0
4038
+ 49
4039
+ 51
4040
+ 3
4041
+ 47
4042
+ 49
4043
+ 52
4044
+ 1
4045
+ 11
4046
+ I
4047
+ d
4048
+ I
4049
+ 5
4050
+ I
4051
+ 0
4052
+ I
4053
+ 0
4054
+ n
4055
+ p
4056
+ 53
4057
+ x
4058
+ 4
4059
+ Sass
4060
+ n
4061
+ x
4062
+ 9
4063
+ Importers
4064
+ x
4065
+ 10
4066
+ Filesystem
4067
+ x
4068
+ 3
4069
+ new
4070
+ x
4071
+ 8
4072
+ allocate
4073
+ x
4074
+ 11
4075
+ fixture_dir
4076
+ x
4077
+ 10
4078
+ initialize
4079
+ x
4080
+ 16
4081
+ IndirectImporter
4082
+ n
4083
+ x
4084
+ 4
4085
+ Hash
4086
+ x
4087
+ 16
4088
+ new_from_literal
4089
+ s
4090
+ 5
4091
+ apple
4092
+ s
4093
+ 4
4094
+ pear
4095
+ x
4096
+ 3
4097
+ []=
4098
+ x
4099
+ 4
4100
+ Time
4101
+ n
4102
+ x
4103
+ 3
4104
+ now
4105
+ x
4106
+ 1
4107
+ -
4108
+ n
4109
+ x
4110
+ 9
4111
+ FileUtils
4112
+ n
4113
+ s
4114
+ 41
4115
+ test_staleness_check_across_importers.css
4116
+ x
4117
+ 12
4118
+ fixture_file
4119
+ x
4120
+ 5
4121
+ touch
4122
+ x
4123
+ 13
4124
+ ClassImporter
4125
+ n
4126
+ s
4127
+ 13
4128
+ color: green;
4129
+ n
4130
+ x
4131
+ 1
4132
+ +
4133
+ n
4134
+ x
4135
+ 5
4136
+ style
4137
+ x
4138
+ 7
4139
+ compact
4140
+ x
4141
+ 8
4142
+ filename
4143
+ s
4144
+ 42
4145
+ test_staleness_check_across_importers.scss
4146
+ x
4147
+ 8
4148
+ importer
4149
+ x
4150
+ 10
4151
+ load_paths
4152
+ x
4153
+ 6
4154
+ syntax
4155
+ x
4156
+ 4
4157
+ scss
4158
+ x
4159
+ 4
4160
+ File
4161
+ n
4162
+ x
4163
+ 4
4164
+ read
4165
+ n
4166
+ x
4167
+ 6
4168
+ Engine
4169
+ n
4170
+ n
4171
+ x
4172
+ 6
4173
+ render
4174
+ x
4175
+ 12
4176
+ assert_equal
4177
+ n
4178
+ x
4179
+ 6
4180
+ Plugin
4181
+ x
4182
+ 16
4183
+ StalenessChecker
4184
+ x
4185
+ 24
4186
+ stylesheet_needs_update?
4187
+ x
4188
+ 6
4189
+ assert
4190
+ p
4191
+ 47
4192
+ I
4193
+ -1
4194
+ I
4195
+ 97
4196
+ I
4197
+ 0
4198
+ I
4199
+ 98
4200
+ I
4201
+ 25
4202
+ I
4203
+ 9a
4204
+ I
4205
+ 94
4206
+ I
4207
+ 9c
4208
+ I
4209
+ a3
4210
+ I
4211
+ 9e
4212
+ I
4213
+ 112
4214
+ I
4215
+ a6
4216
+ I
4217
+ 11b
4218
+ I
4219
+ a1
4220
+ I
4221
+ 124
4222
+ I
4223
+ a2
4224
+ I
4225
+ 133
4226
+ I
4227
+ a3
4228
+ I
4229
+ 13c
4230
+ I
4231
+ a4
4232
+ I
4233
+ 14b
4234
+ I
4235
+ a5
4236
+ I
4237
+ 153
4238
+ I
4239
+ a0
4240
+ I
4241
+ 156
4242
+ I
4243
+ a8
4244
+ I
4245
+ 165
4246
+ I
4247
+ a9
4248
+ I
4249
+ 1a2
4250
+ I
4251
+ a8
4252
+ I
4253
+ 1a7
4254
+ I
4255
+ ab
4256
+ I
4257
+ 1ca
4258
+ I
4259
+ b1
4260
+ I
4261
+ 1cb
4262
+ I
4263
+ ad
4264
+ I
4265
+ 1cd
4266
+ I
4267
+ ae
4268
+ I
4269
+ 1d5
4270
+ I
4271
+ af
4272
+ I
4273
+ 1dd
4274
+ I
4275
+ b0
4276
+ I
4277
+ 1df
4278
+ I
4279
+ ad
4280
+ I
4281
+ 1e2
4282
+ I
4283
+ b1
4284
+ I
4285
+ 1e7
4286
+ x
4287
+ 53
4288
+ /Users/chris/Projects/sass/test/sass/importer_test.rb
4289
+ p
4290
+ 5
4291
+ x
4292
+ 20
4293
+ file_system_importer
4294
+ x
4295
+ 17
4296
+ indirect_importer
4297
+ x
4298
+ 14
4299
+ class_importer
4300
+ x
4301
+ 7
4302
+ options
4303
+ x
4304
+ 7
4305
+ checker
4306
+ x
4307
+ 11
4308
+ fixture_dir
4309
+ M
4310
+ 1
4311
+ n
4312
+ n
4313
+ x
4314
+ 11
4315
+ fixture_dir
4316
+ i
4317
+ 20
4318
+ 45
4319
+ 0
4320
+ 1
4321
+ 45
4322
+ 0
4323
+ 2
4324
+ 65
4325
+ 49
4326
+ 3
4327
+ 0
4328
+ 49
4329
+ 4
4330
+ 1
4331
+ 7
4332
+ 5
4333
+ 64
4334
+ 49
4335
+ 6
4336
+ 2
4337
+ 11
4338
+ I
4339
+ 3
4340
+ I
4341
+ 0
4342
+ I
4343
+ 0
4344
+ I
4345
+ 0
4346
+ n
4347
+ p
4348
+ 7
4349
+ x
4350
+ 4
4351
+ File
4352
+ n
4353
+ n
4354
+ x
4355
+ 11
4356
+ active_path
4357
+ x
4358
+ 7
4359
+ dirname
4360
+ s
4361
+ 8
4362
+ fixtures
4363
+ x
4364
+ 4
4365
+ join
4366
+ p
4367
+ 5
4368
+ I
4369
+ -1
4370
+ I
4371
+ b3
4372
+ I
4373
+ 0
4374
+ I
4375
+ b4
4376
+ I
4377
+ 14
4378
+ x
4379
+ 53
4380
+ /Users/chris/Projects/sass/test/sass/importer_test.rb
4381
+ p
4382
+ 0
4383
+ x
4384
+ 12
4385
+ fixture_file
4386
+ M
4387
+ 1
4388
+ n
4389
+ n
4390
+ x
4391
+ 12
4392
+ fixture_file
4393
+ i
4394
+ 12
4395
+ 45
4396
+ 0
4397
+ 1
4398
+ 5
4399
+ 48
4400
+ 2
4401
+ 20
4402
+ 0
4403
+ 49
4404
+ 3
4405
+ 2
4406
+ 11
4407
+ I
4408
+ 4
4409
+ I
4410
+ 1
4411
+ I
4412
+ 1
4413
+ I
4414
+ 1
4415
+ n
4416
+ p
4417
+ 4
4418
+ x
4419
+ 4
4420
+ File
4421
+ n
4422
+ x
4423
+ 11
4424
+ fixture_dir
4425
+ x
4426
+ 4
4427
+ join
4428
+ p
4429
+ 5
4430
+ I
4431
+ -1
4432
+ I
4433
+ b6
4434
+ I
4435
+ 0
4436
+ I
4437
+ b7
4438
+ I
4439
+ c
4440
+ x
4441
+ 53
4442
+ /Users/chris/Projects/sass/test/sass/importer_test.rb
4443
+ p
4444
+ 1
4445
+ x
4446
+ 4
4447
+ path
4448
+ p
4449
+ 19
4450
+ I
4451
+ 2
4452
+ I
4453
+ 9
4454
+ I
4455
+ 23
4456
+ I
4457
+ 25
4458
+ I
4459
+ 44
4460
+ I
4461
+ 2d
4462
+ I
4463
+ 65
4464
+ I
4465
+ 4e
4466
+ I
4467
+ 86
4468
+ I
4469
+ 6d
4470
+ I
4471
+ 94
4472
+ I
4473
+ 80
4474
+ I
4475
+ a2
4476
+ I
4477
+ 97
4478
+ I
4479
+ b0
4480
+ I
4481
+ b3
4482
+ I
4483
+ be
4484
+ I
4485
+ b6
4486
+ I
4487
+ cc
4488
+ x
4489
+ 53
4490
+ /Users/chris/Projects/sass/test/sass/importer_test.rb
4491
+ p
4492
+ 0
4493
+ x
4494
+ 13
4495
+ attach_method
4496
+ p
4497
+ 9
4498
+ I
4499
+ 0
4500
+ I
4501
+ 2
4502
+ I
4503
+ 15
4504
+ I
4505
+ 3
4506
+ I
4507
+ 2a
4508
+ I
4509
+ 5
4510
+ I
4511
+ 33
4512
+ I
4513
+ 7
4514
+ I
4515
+ 56
4516
+ x
4517
+ 53
4518
+ /Users/chris/Projects/sass/test/sass/importer_test.rb
4519
+ p
4520
+ 0