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