haml 3.0.4 → 3.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of haml might be problematic. Click here for more details.

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