haml 3.0.4 → 3.0.5

Sign up to get free protection for your applications and to get access to all the features.

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