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