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