-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmaybebad.txt
709 lines (709 loc) · 66.2 KB
/
maybebad.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
./visage.kit/test/qa-functional/data/gui/palette/ButtonTemplate.visage
./visage.kit/test/qa-functional/data/gui/debugger/smoke/Debugger.visage
./visage.kit/test/qa-functional/data/gui/editor/codecompletion/file/Keywords.visage
./visage.kit/test/qa-functional/data/gui/editor/codecompletion/file/Keywords_golden.visage
./visage.kit/test/qa-functional/data/gui/editor/codeformating/DataTypes.visage
./visage.kit/test/qa-functional/data/gui/editor/codeformating/ObjectLiteral_golden.visage
./visage.kit/test/qa-functional/data/gui/editor/codeformating/Variables.visage
./visage.kit/test/qa-functional/data/gui/editor/codeformating/DataTypes_golden.visage
./visage.kit/test/qa-functional/data/gui/editor/codeformating/ObjectLiteral.visage
./visage.kit/test/qa-functional/data/gui/editor/codeformating/Function_golden.visage
./visage.kit/test/qa-functional/data/gui/editor/codeformating/FunctionBody_golden.visage
./visage.kit/test/qa-functional/data/gui/editor/codeformating/variable/NegativeValue_golden.visage
./visage.kit/test/qa-functional/data/gui/editor/codeformating/variable/Binding_golden.visage
./visage.kit/test/qa-functional/data/gui/editor/codeformating/variable/Spaces.visage
./visage.kit/test/qa-functional/data/gui/editor/codeformating/variable/Binding.visage
./visage.kit/test/qa-functional/data/gui/editor/codeformating/variable/NegativeValue.visage
./visage.kit/test/qa-functional/data/gui/editor/codeformating/variable/Spaces_golden.visage
./visage.kit/test/qa-functional/data/gui/editor/codeformating/Variables_golden.visage
./visage.kit/test/qa-functional/data/gui/editor/codeformating/Class.visage
./visage.kit/test/qa-functional/data/gui/editor/codeformating/Class_golden.visage
./visage.kit/test/qa-functional/data/gui/editor/codeformating/Variable_Trigger_golden.visage
./visage.kit/test/qa-functional/data/gui/editor/codeformating/Function.visage
./visage.kit/test/qa-functional/data/gui/editor/codeformating/Variable_Trigger.visage
./visage.kit/test/qa-functional/data/gui/editor/codeformating/FunctionBody.visage
./visage.kit/test/qa-functional/data/gui/samples/helloworld/HelloWorld.visage
./visage.kit/test/qa-functional/data/gui/profiler/smoke/Profiler.visage
./visage.source/test/unit/data/org/netbeans/api/visage/source/TreeUtilitiesTest.visage
./visage.lexer/test/unit/src/org/netbeans/lib/visage/lexer/test.visage
./.hg/store/data/visage.kit/test/qa-functional/data/gui/palette/_button_template.visage.i
./.hg/store/data/visage.kit/test/qa-functional/data/gui/debugger/smoke/_debugger.visage.i
./.hg/store/data/visage.kit/test/qa-functional/data/gui/editor/codecompletion/file/_keywords.visage.i
./.hg/store/data/visage.kit/test/qa-functional/data/gui/editor/codecompletion/file/_keywords__golden.visage.i
./.hg/store/data/visage.kit/test/qa-functional/data/gui/editor/codeformating/_variable___trigger__golden.visage.i
./.hg/store/data/visage.kit/test/qa-functional/data/gui/editor/codeformating/_variable___trigger.visage.i
./.hg/store/data/visage.kit/test/qa-functional/data/gui/editor/codeformating/_function_body__golden.visage.i
./.hg/store/data/visage.kit/test/qa-functional/data/gui/editor/codeformating/_variables__golden.visage.i
./.hg/store/data/visage.kit/test/qa-functional/data/gui/editor/codeformating/_variables.visage.i
./.hg/store/data/visage.kit/test/qa-functional/data/gui/editor/codeformating/_function.visage.i
./.hg/store/data/visage.kit/test/qa-functional/data/gui/editor/codeformating/_class__golden.visage.i
./.hg/store/data/visage.kit/test/qa-functional/data/gui/editor/codeformating/_object_literal.visage.i
./.hg/store/data/visage.kit/test/qa-functional/data/gui/editor/codeformating/_class.visage.i
./.hg/store/data/visage.kit/test/qa-functional/data/gui/editor/codeformating/_data_types.visage.i
./.hg/store/data/visage.kit/test/qa-functional/data/gui/editor/codeformating/_function__golden.visage.i
./.hg/store/data/visage.kit/test/qa-functional/data/gui/editor/codeformating/variable/_negative_value.visage.i
./.hg/store/data/visage.kit/test/qa-functional/data/gui/editor/codeformating/variable/_binding.visage.i
./.hg/store/data/visage.kit/test/qa-functional/data/gui/editor/codeformating/variable/_spaces__golden.visage.i
./.hg/store/data/visage.kit/test/qa-functional/data/gui/editor/codeformating/variable/_binding__golden.visage.i
./.hg/store/data/visage.kit/test/qa-functional/data/gui/editor/codeformating/variable/_spaces.visage.i
./.hg/store/data/visage.kit/test/qa-functional/data/gui/editor/codeformating/variable/_negative_value__golden.visage.i
./.hg/store/data/visage.kit/test/qa-functional/data/gui/editor/codeformating/_data_types__golden.visage.i
./.hg/store/data/visage.kit/test/qa-functional/data/gui/editor/codeformating/_function_body.visage.i
./.hg/store/data/visage.kit/test/qa-functional/data/gui/editor/codeformating/_object_literal__golden.visage.i
./.hg/store/data/visage.kit/test/qa-functional/data/gui/samples/helloworld/_hello_world.visage.i
./.hg/store/data/visage.kit/test/qa-functional/data/gui/profiler/smoke/_profiler.visage.i
./.hg/store/data/visage.source/test/unit/data/org/netbeans/api/visage/source/_tree_utilities_test.visage.i
./.hg/store/data/javafx.bestpractices/src/demos/math/_distance2_d.visage.i
./.hg/store/data/javafx.bestpractices/src/demos/math/_sine.visage.i
./.hg/store/data/javafx.bestpractices/src/demos/math/_arctangent.visage.i
./.hg/store/data/javafx.bestpractices/src/demos/math/_sine_wave.visage.i
./.hg/store/data/javafx.bestpractices/src/demos/math/_distance1_d.visage.i
./.hg/store/data/javafx.bestpractices/src/demos/game/_bounce.visage.i
./.hg/store/data/javafx.bestpractices/src/demos/particles/_smoke_particle_system.visage.i
./.hg/store/data/javafx.bestpractices/src/demos/particles/_flock_demo.visage.i
./.hg/store/data/javafx.bestpractices/src/demos/particles/_simple_particle_system.visage.i
./.hg/store/data/javafx.bestpractices/src/demos/color/_color_wheel.visage.i
./.hg/store/data/javafx.bestpractices/src/demos/color/_gradient_sample.visage.i
./.hg/store/data/javafx.bestpractices/src/demos/motion/_linear.visage.i
./.hg/store/data/javafx.bestpractices/src/demos/motion/_bouncy_bubbles.visage.i
./.hg/store/data/javafx.bestpractices/src/demos/shapes/_shape_primitives.visage.i
./.hg/store/data/javafx.bestpractices/src/demos/shapes/_points_and_lines.visage.i
./.hg/store/data/javafx.bestpractices/src/demos/image/_transparency.visage.i
./.hg/store/data/javafx.bestpractices/src/demos/image/_displaying.visage.i
./.hg/store/data/javafx.bestpractices/src/demos/image/_background_image.visage.i
./.hg/store/data/javafx.bestpractices/src/demos/forms/_shape_primitives.visage.i
./.hg/store/data/javafx.bestpractices/src/demos/forms/_points_and_lines.visage.i
./.hg/store/data/javafx.bestpractices/src/demos/transform/_scale.visage.i
./.hg/store/data/javafx.bestpractices/src/demos/transform/_translate.visage.i
./.hg/store/data/javafx.bestpractices/src/demos/transform/_rotate.visage.i
./.hg/store/data/javafx.bestpractices/src/demos/input/_easing.visage.i
./.hg/store/data/javafx.bestpractices/src/demos/input/_constrain.visage.i
./.hg/store/data/javafx.bestpractices/src/demos/input/_mouse2_d.visage.i
./.hg/store/data/javafx.bestpractices/src/demos/input/_storing_input.visage.i
./.hg/store/data/javafx.bestpractices/src/demos/input/_mouse_press.visage.i
./.hg/store/data/javafx.bestpractices/src/demos/input/_mouse1_d.visage.i
./.hg/store/data/javafx.bestpractices/src/demos/input/_clock.visage.i
./.hg/store/data/javafx.bestpractices/src/demos/input/_milliseconds.visage.i
./.hg/store/data/javafx.kit/test/qa-functional/data/gui/palette/_button_template.visage.i
./.hg/store/data/javafx.kit/test/qa-functional/data/gui/debugger/smoke/_debugger.visage.i
./.hg/store/data/javafx.kit/test/qa-functional/data/gui/editor/codecompletion/file/_keywords.visage.i
./.hg/store/data/javafx.kit/test/qa-functional/data/gui/editor/codecompletion/file/_keywords__golden.visage.i
./.hg/store/data/javafx.kit/test/qa-functional/data/gui/editor/codeformating/_variable___trigger__golden.visage.i
./.hg/store/data/javafx.kit/test/qa-functional/data/gui/editor/codeformating/_variable___trigger.visage.i
./.hg/store/data/javafx.kit/test/qa-functional/data/gui/editor/codeformating/_function_body__golden.visage.i
./.hg/store/data/javafx.kit/test/qa-functional/data/gui/editor/codeformating/_variables__golden.visage.i
./.hg/store/data/javafx.kit/test/qa-functional/data/gui/editor/codeformating/_variables.visage.i
./.hg/store/data/javafx.kit/test/qa-functional/data/gui/editor/codeformating/_function.visage.i
./.hg/store/data/javafx.kit/test/qa-functional/data/gui/editor/codeformating/_class__golden.visage.i
./.hg/store/data/javafx.kit/test/qa-functional/data/gui/editor/codeformating/_object_literal.visage.i
./.hg/store/data/javafx.kit/test/qa-functional/data/gui/editor/codeformating/_class.visage.i
./.hg/store/data/javafx.kit/test/qa-functional/data/gui/editor/codeformating/_data_types.visage.i
./.hg/store/data/javafx.kit/test/qa-functional/data/gui/editor/codeformating/_function__golden.visage.i
./.hg/store/data/javafx.kit/test/qa-functional/data/gui/editor/codeformating/variable/_negative_value.visage.i
./.hg/store/data/javafx.kit/test/qa-functional/data/gui/editor/codeformating/variable/_binding.visage.i
./.hg/store/data/javafx.kit/test/qa-functional/data/gui/editor/codeformating/variable/_spaces__golden.visage.i
./.hg/store/data/javafx.kit/test/qa-functional/data/gui/editor/codeformating/variable/_binding__golden.visage.i
./.hg/store/data/javafx.kit/test/qa-functional/data/gui/editor/codeformating/variable/_spaces.visage.i
./.hg/store/data/javafx.kit/test/qa-functional/data/gui/editor/codeformating/variable/_negative_value__golden.visage.i
./.hg/store/data/javafx.kit/test/qa-functional/data/gui/editor/codeformating/_data_types__golden.visage.i
./.hg/store/data/javafx.kit/test/qa-functional/data/gui/editor/codeformating/_function_body.visage.i
./.hg/store/data/javafx.kit/test/qa-functional/data/gui/editor/codeformating/_object_literal__golden.visage.i
./.hg/store/data/javafx.kit/test/qa-functional/data/gui/samples/helloworld/_hello_world.visage.i
./.hg/store/data/javafx.kit/test/qa-functional/data/gui/profiler/smoke/_profiler.visage.i
./.hg/store/data/javafx.editor/src/org/netbeans/modules/javafx/dataloader/_java_f_x_class.visage__.i
./.hg/store/data/javafx.editor/src/org/netbeans/modules/javafx/dataloader/_java_f_x_empty.visage__.i
./.hg/store/data/javafx.editor/src/org/netbeans/modules/javafx/dataloader/_java_f_x_applet.visage.i
./.hg/store/data/javafx.editor/src/org/netbeans/modules/javafx/dataloader/_java_f_x_class.visage.i
./.hg/store/data/javafx.editor/src/org/netbeans/modules/javafx/dataloader/_java_f_x_empty.visage.i
./.hg/store/data/javafx.editor/src/org/netbeans/modules/javafx/dataloader/_java_f_x_custom_node.visage__.i
./.hg/store/data/javafx.editor/src/org/netbeans/modules/javafx/dataloader/_java_f_x_stage.visage.i
./.hg/store/data/javafx.editor/src/org/netbeans/modules/javafx/dataloader/_java_f_x_stage.visage__.i
./.hg/store/data/javafx.editor/test/unit/data/code.visage.semantic.i
./.hg/store/data/javafx.editor/test/unit/data/org/netbeans/modules/javafx/editor/completion/data/_indexer_vs_completion.visage.i
./.hg/store/data/javafx.editor/test/unit/data/org/netbeans/modules/javafx/editor/completion/data/_only_package.visage.i
./.hg/store/data/javafx.editor/test/unit/data/org/netbeans/modules/javafx/editor/completion/data/_iz171897.visage.i
./.hg/store/data/javafx.editor/test/unit/data/org/netbeans/modules/javafx/editor/completion/data/_iz167875.visage.i
./.hg/store/data/javafx.editor/test/unit/data/org/netbeans/modules/javafx/editor/completion/data/_iz156041.visage.i
./.hg/store/data/javafx.editor/test/unit/data/org/netbeans/modules/javafx/editor/completion/data/_color.visage.i
./.hg/store/data/javafx.editor/test/unit/data/org/netbeans/modules/javafx/editor/completion/data/_iz177282.visage.i
./.hg/store/data/javafx.editor/test/unit/data/org/netbeans/modules/javafx/editor/completion/data/_iz175333.visage.i
./.hg/store/data/javafx.editor/test/unit/data/org/netbeans/modules/javafx/editor/completion/data/_iz172046.visage.i
./.hg/store/data/javafx.editor/test/unit/data/org/netbeans/modules/javafx/editor/completion/data/_iz159678.visage.i
./.hg/store/data/javafx.editor/test/unit/data/org/netbeans/modules/javafx/editor/completion/data/_iz182293.visage.i
./.hg/store/data/javafx.editor/test/unit/data/org/netbeans/modules/javafx/editor/completion/data/_iz171484.visage.i
./.hg/store/data/javafx.editor/test/unit/data/org/netbeans/modules/javafx/editor/completion/data/_iz165374.visage.i
./.hg/store/data/javafx.editor/test/unit/data/org/netbeans/modules/javafx/editor/completion/data/_model.visage.i
./.hg/store/data/javafx.editor/test/unit/data/org/netbeans/modules/javafx/editor/completion/data/_iz173358.visage.i
./.hg/store/data/javafx.editor/test/unit/data/org/netbeans/modules/javafx/editor/completion/data/_iz178366.visage.i
./.hg/store/data/javafx.editor/test/unit/data/org/netbeans/modules/javafx/editor/completion/data/_class_methods.visage.i
./.hg/store/data/javafx.editor/test/unit/data/org/netbeans/modules/javafx/editor/completion/data/_iz171185.visage.i
./.hg/store/data/javafx.editor/test/unit/data/org/netbeans/modules/javafx/editor/completion/data/_iz173838.visage.i
./.hg/store/data/javafx.editor/test/unit/data/org/netbeans/modules/javafx/editor/completion/data/_iz165928.visage.i
./.hg/store/data/javafx.editor/test/unit/data/org/netbeans/modules/javafx/editor/completion/data/_iz150039.visage.i
./.hg/store/data/javafx.editor/test/unit/data/org/netbeans/modules/javafx/editor/hints/data/_add_hints.visage.i
./.hg/store/data/javafx.editor/test/unit/data/code.visage.txt.i
./.hg/store/data/javafx.editor/test/unit/data/code.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_tw.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_ex.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_pr.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_for.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_insa.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_serr.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_ab.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_def.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_if.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_as.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_eli.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_in.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_im.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_fi.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_ife.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_trir.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_re.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_st.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_we.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_insb.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_trid.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_th.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_el.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_fu.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_ca.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_pa.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_cl.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_pe.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_ind.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_br.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_cn.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_nu.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_bo.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_de.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_pu.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_tr.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_bi.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_iof.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_tof.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_fa.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_wh.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_so.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_trin.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_ins.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_pi.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_trii.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_inv.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_var.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_sout.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/formatting/_format_import001.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-2/src/fxprj2/_format_import001.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-2/src/fxprj2/_background_image.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-1/src/classes/_f_x_test_class004.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-1/src/classes/_f_x_test_class008.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-1/src/classes/_f_x_test_class006.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-1/src/classes/_f_x_test_class001.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-1/src/classes/_f_x_test_class007.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-1/src/classes/_f_x_test_class_var2.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-1/src/classes/_f_x_test_class005.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-1/src/classes/userobjects/_user_object001.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-1/src/classes/_f_x_test_class002.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-1/src/classes/_f_x_test_class003.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-1/src/classes/_f_x_test_class_var1.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-1/src/packages/_f_x_test_package.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-1/src/packages/_f_x_test_empty.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-1/src/fxprj1/_f_x_test1.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-1/src/frame/stage/content/_content_image1.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-1/src/frame/stage/content/_content_line1.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-1/src/frame/stage/content/_content_ellipse1.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-1/src/frame/stage/content/_linear_gradient1.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-1/src/frame/stage/content/_content_circle1.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-1/src/frame/stage/content/_content_color.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-1/src/frame/stage/content/_content_rectangle1.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-1/src/frame/stage/content/_content_text1.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-1/src/frame/stage/content/_content_arc1.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-1/src/frame/stage/content/_content_polyline1.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-1/src/frame/stage/content/_content_polygon1.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-1/src/frame/stage/_stage001.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-1/src/frame/_frame001.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-1/src/declarations/_top_lvl_var2.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-1/src/declarations/_top_lvl_var1.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-1/src/declarations/_top_lvl_var3.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-1/src/declarations/_animation001.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-1/src/imports/_f_x_test_import_java_f_x_scene_text.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-1/src/imports/_f_x_test_import_java_f_x_ext_swing.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-1/src/imports/_f_x_test_import_java_f_x_ext.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-1/src/imports/_f_x_test_import_java_f_x_scene_image.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-1/src/imports/_f_x_test_import_java_f_x_scene_geometry.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-1/src/imports/_f_x_test_import_java_f_x_animation.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-1/src/imports/_f_x_test_import_java_f_x_input.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-1/src/imports/_f_x_test_import_java_f_x_scene_layout.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-1/src/imports/_f_x_test_import_java_f_x_lang.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-1/src/imports/_f_x_test_import_java_f_x_util.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-1/src/imports/_f_x_test_import.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-1/src/imports/_f_x_test_import_java.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-1/src/imports/_f_x_test_import_java_f_x_s.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-1/src/imports/_f_x_test_import_java_f_x_reflect.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-1/src/imports/_f_x_test_import_java_f_x_scene_effect_light.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-1/src/imports/_f_x_test_import_java_f_x_scene_effect.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-1/src/imports/_f_x_test_import_java_f_x_scene_paint.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-1/src/imports/_f_x_test_import_java_f_x_application.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-1/src/imports/_f_x_test_import_java_f_x.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-1/src/imports/_f_x_test_import_java_f_x_scene_transform.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-1/src/imports/_f_x_test_import_java_f_x_scene.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-1/src/imports/_f_x_test_import_java2.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-1/src/imports/_f_x_test_import_java_f_x_f_x_unit.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-1/src/imports/_f_x_test_import_java_f_x_scene_media.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-1/src/imports/_f_x_test_import_java_f_x_async.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-1/src/applications/_f_x_test_application3.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-1/src/applications/_f_x_test_application5.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-1/src/applications/_f_x_test_application2.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-1/src/applications/_f_x_test_application4.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-1/src/applications/_f_x_test_application6.visage.i
./.hg/store/data/javafx.editor/test/qa-functional/data/fx-prj-1/src/applications/_f_x_test_application1.visage.i
./.hg/store/data/visage.lexer/test/unit/src/org/netbeans/lib/visage/lexer/test.visage.i
./.hg/store/data/javafx.flickrflockr/resources/_flickr_flockr/src/flickflockr/_main.visage.i
./.hg/store/data/javafx.weather2/resources/_weather_f_x/src/weatherfx/_loading_screen.visage.i
./.hg/store/data/javafx.weather2/resources/_weather_f_x/src/weatherfx/_weather_app.visage.i
./.hg/store/data/javafx.weather2/resources/_weather_f_x/src/weatherfx/_cached_image.visage.i
./.hg/store/data/javafx.weather2/resources/_weather_f_x/src/weatherfx/_weather_model.visage.i
./.hg/store/data/javafx.weather2/resources/_weather_f_x/src/weatherfx/_transform_helper.visage.i
./.hg/store/data/javafx.weather2/resources/_weather_f_x/src/weatherfx/_utils.visage.i
./.hg/store/data/javafx.weather2/resources/_weather_f_x/src/weatherfx/_weather.visage.i
./.hg/store/data/javafx.weather2/resources/_weather_f_x/src/weatherfx/_animated_image.visage.i
./.hg/store/data/visage.refactoring/test/unit/data/org/netbeans/api/visage/source/_tree_utilities_test.visage.i
./.hg/store/data/visage.refactoring/test/unit/data/org/netbeans/modules/visage/refactoring/issues/_i184353.visage.i
./.hg/store/data/visage.refactoring/test/unit/data/org/netbeans/modules/visage/refactoring/_g_simple_vertex.visage.i
./.hg/store/data/visage.refactoring/test/unit/data/org/netbeans/modules/visage/refactoring/_g_simple_edge.visage.i
./.hg/store/data/visage.editor/src/org/netbeans/modules/visage/dataloader/_java_f_x_class.visage__.i
./.hg/store/data/visage.editor/src/org/netbeans/modules/visage/dataloader/_java_f_x_empty.visage__.i
./.hg/store/data/visage.editor/src/org/netbeans/modules/visage/dataloader/_java_f_x_custom_node.visage__.i
./.hg/store/data/visage.editor/src/org/netbeans/modules/visage/dataloader/_java_f_x_stage.visage__.i
./.hg/store/data/visage.editor/test/unit/data/code.visage.semantic.i
./.hg/store/data/visage.editor/test/unit/data/org/netbeans/modules/visage/editor/completion/data/_indexer_vs_completion.visage.i
./.hg/store/data/visage.editor/test/unit/data/org/netbeans/modules/visage/editor/completion/data/_only_package.visage.i
./.hg/store/data/visage.editor/test/unit/data/org/netbeans/modules/visage/editor/completion/data/_iz171897.visage.i
./.hg/store/data/visage.editor/test/unit/data/org/netbeans/modules/visage/editor/completion/data/_iz167875.visage.i
./.hg/store/data/visage.editor/test/unit/data/org/netbeans/modules/visage/editor/completion/data/_iz156041.visage.i
./.hg/store/data/visage.editor/test/unit/data/org/netbeans/modules/visage/editor/completion/data/_color.visage.i
./.hg/store/data/visage.editor/test/unit/data/org/netbeans/modules/visage/editor/completion/data/_iz177282.visage.i
./.hg/store/data/visage.editor/test/unit/data/org/netbeans/modules/visage/editor/completion/data/_iz175333.visage.i
./.hg/store/data/visage.editor/test/unit/data/org/netbeans/modules/visage/editor/completion/data/_iz172046.visage.i
./.hg/store/data/visage.editor/test/unit/data/org/netbeans/modules/visage/editor/completion/data/_iz159678.visage.i
./.hg/store/data/visage.editor/test/unit/data/org/netbeans/modules/visage/editor/completion/data/_iz182293.visage.i
./.hg/store/data/visage.editor/test/unit/data/org/netbeans/modules/visage/editor/completion/data/_iz171484.visage.i
./.hg/store/data/visage.editor/test/unit/data/org/netbeans/modules/visage/editor/completion/data/_iz165374.visage.i
./.hg/store/data/visage.editor/test/unit/data/org/netbeans/modules/visage/editor/completion/data/_model.visage.i
./.hg/store/data/visage.editor/test/unit/data/org/netbeans/modules/visage/editor/completion/data/_iz173358.visage.i
./.hg/store/data/visage.editor/test/unit/data/org/netbeans/modules/visage/editor/completion/data/_iz178366.visage.i
./.hg/store/data/visage.editor/test/unit/data/org/netbeans/modules/visage/editor/completion/data/_class_methods.visage.i
./.hg/store/data/visage.editor/test/unit/data/org/netbeans/modules/visage/editor/completion/data/_iz171185.visage.i
./.hg/store/data/visage.editor/test/unit/data/org/netbeans/modules/visage/editor/completion/data/_iz173838.visage.i
./.hg/store/data/visage.editor/test/unit/data/org/netbeans/modules/visage/editor/completion/data/_iz165928.visage.i
./.hg/store/data/visage.editor/test/unit/data/org/netbeans/modules/visage/editor/completion/data/_iz150039.visage.i
./.hg/store/data/visage.editor/test/unit/data/org/netbeans/modules/visage/editor/hints/data/_add_hints.visage.i
./.hg/store/data/visage.editor/test/unit/data/code.visage.txt.i
./.hg/store/data/visage.editor/test/unit/data/code.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_tw.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_ex.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_pr.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_for.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_insa.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_serr.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_ab.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_def.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_if.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_as.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_eli.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_in.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_im.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_fi.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_ife.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_trir.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_re.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_st.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_we.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_insb.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_trid.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_th.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_el.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_fu.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_ca.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_pa.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_cl.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_pe.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_ind.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_br.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_cn.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_nu.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_bo.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_de.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_pu.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_tr.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_bi.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_iof.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_tof.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_fa.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_wh.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_so.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_trin.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_ins.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_pi.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_trii.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_inv.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_var.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/_template_sout.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/formatting/_format_import001.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-2/src/fxprj2/_format_import001.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-2/src/fxprj2/_background_image.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-1/src/classes/_f_x_test_class004.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-1/src/classes/_f_x_test_class008.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-1/src/classes/_f_x_test_class006.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-1/src/classes/_f_x_test_class001.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-1/src/classes/_f_x_test_class007.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-1/src/classes/_f_x_test_class_var2.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-1/src/classes/_f_x_test_class005.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-1/src/classes/userobjects/_user_object001.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-1/src/classes/_f_x_test_class002.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-1/src/classes/_f_x_test_class003.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-1/src/classes/_f_x_test_class_var1.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-1/src/packages/_f_x_test_package.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-1/src/packages/_f_x_test_empty.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-1/src/fxprj1/_f_x_test1.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-1/src/frame/stage/content/_content_image1.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-1/src/frame/stage/content/_content_line1.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-1/src/frame/stage/content/_content_ellipse1.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-1/src/frame/stage/content/_linear_gradient1.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-1/src/frame/stage/content/_content_circle1.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-1/src/frame/stage/content/_content_color.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-1/src/frame/stage/content/_content_rectangle1.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-1/src/frame/stage/content/_content_text1.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-1/src/frame/stage/content/_content_arc1.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-1/src/frame/stage/content/_content_polyline1.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-1/src/frame/stage/content/_content_polygon1.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-1/src/frame/stage/_stage001.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-1/src/frame/_frame001.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-1/src/declarations/_top_lvl_var2.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-1/src/declarations/_top_lvl_var1.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-1/src/declarations/_top_lvl_var3.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-1/src/declarations/_animation001.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-1/src/imports/_f_x_test_import_java_f_x_scene_text.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-1/src/imports/_f_x_test_import_java_f_x_ext_swing.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-1/src/imports/_f_x_test_import_java_f_x_ext.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-1/src/imports/_f_x_test_import_java_f_x_scene_image.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-1/src/imports/_f_x_test_import_java_f_x_scene_geometry.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-1/src/imports/_f_x_test_import_java_f_x_animation.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-1/src/imports/_f_x_test_import_java_f_x_input.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-1/src/imports/_f_x_test_import_java_f_x_scene_layout.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-1/src/imports/_f_x_test_import_java_f_x_lang.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-1/src/imports/_f_x_test_import_java_f_x_util.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-1/src/imports/_f_x_test_import.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-1/src/imports/_f_x_test_import_java.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-1/src/imports/_f_x_test_import_java_f_x_s.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-1/src/imports/_f_x_test_import_java_f_x_reflect.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-1/src/imports/_f_x_test_import_java_f_x_scene_effect_light.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-1/src/imports/_f_x_test_import_java_f_x_scene_effect.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-1/src/imports/_f_x_test_import_java_f_x_scene_paint.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-1/src/imports/_f_x_test_import_java_f_x_application.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-1/src/imports/_f_x_test_import_java_f_x.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-1/src/imports/_f_x_test_import_java_f_x_scene_transform.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-1/src/imports/_f_x_test_import_java_f_x_scene.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-1/src/imports/_f_x_test_import_java2.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-1/src/imports/_f_x_test_import_java_f_x_f_x_unit.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-1/src/imports/_f_x_test_import_java_f_x_scene_media.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-1/src/imports/_f_x_test_import_java_f_x_async.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-1/src/applications/_f_x_test_application3.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-1/src/applications/_f_x_test_application5.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-1/src/applications/_f_x_test_application2.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-1/src/applications/_f_x_test_application4.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-1/src/applications/_f_x_test_application6.visage.i
./.hg/store/data/visage.editor/test/qa-functional/data/fx-prj-1/src/applications/_f_x_test_application1.visage.i
./.hg/store/data/javafx.graphicssample/resources/_java_f_x_demos/src/transformations/_scale_example.visage.i
./.hg/store/data/javafx.graphicssample/resources/_java_f_x_demos/src/transformations/_rotate_example.visage.i
./.hg/store/data/javafx.graphicssample/resources/_java_f_x_demos/src/transformations/_skew_example.visage.i
./.hg/store/data/javafx.graphicssample/resources/_java_f_x_demos/src/transformations/_translate_example.visage.i
./.hg/store/data/javafx.graphicssample/resources/_java_f_x_demos/src/transformations/_transformation_example.visage.i
./.hg/store/data/javafx.graphicssample/resources/_java_f_x_demos/src/animation/_animation_example.visage.i
./.hg/store/data/javafx.graphicssample/resources/_java_f_x_demos/src/events/_input_events.visage.i
./.hg/store/data/javafx.graphicssample/resources/_java_f_x_demos/src/morphing/_morph_example.visage.i
./.hg/store/data/javafx.graphicssample/resources/_java_f_x_demos/src/userdefined/_graphic_objects.visage.i
./.hg/store/data/javafx.graphicssample/resources/_java_f_x_demos/src/clipping/_none_clip_example.visage.i
./.hg/store/data/javafx.graphicssample/resources/_java_f_x_demos/src/clipping/_clip_example.visage.i
./.hg/store/data/javafx.graphicssample/resources/_java_f_x_demos/src/clipping/_rectangle_example.visage.i
./.hg/store/data/javafx.graphicssample/resources/_java_f_x_demos/src/clipping/_text_clip_example.visage.i
./.hg/store/data/javafx.graphicssample/resources/_java_f_x_demos/src/clipping/_circle_clip_example.visage.i
./.hg/store/data/javafx.graphicssample/resources/_java_f_x_demos/src/main/_menu.visage.i
./.hg/store/data/javafx.graphicssample/resources/_java_f_x_demos/src/main/_source_view.visage.i
./.hg/store/data/javafx.graphicssample/resources/_java_f_x_demos/src/main/_introduction.visage.i
./.hg/store/data/javafx.graphicssample/resources/_java_f_x_demos/src/main/_tutorial.visage.i
./.hg/store/data/javafx.graphicssample/resources/_java_f_x_demos/src/main/_button.visage.i
./.hg/store/data/javafx.graphicssample/resources/_java_f_x_demos/src/main/_main.visage.i
./.hg/store/data/javafx.graphicssample/resources/_java_f_x_demos/src/painting/_radial_gradient_example.visage.i
./.hg/store/data/javafx.graphicssample/resources/_java_f_x_demos/src/painting/_stroke_example.visage.i
./.hg/store/data/javafx.graphicssample/resources/_java_f_x_demos/src/painting/_linear_gradient_example.visage.i
./.hg/store/data/javafx.graphicssample/resources/_java_f_x_demos/src/painting/_pattern_example.visage.i
./.hg/store/data/javafx.graphicssample/resources/_java_f_x_demos/src/painting/_fill_example.visage.i
./.hg/store/data/javafx.graphicssample/resources/_java_f_x_demos/src/groups/_groups_example.visage.i
./.hg/store/data/javafx.graphicssample/resources/_java_f_x_demos/src/groups/_scale_example.visage.i
./.hg/store/data/javafx.graphicssample/resources/_java_f_x_demos/src/groups/_rotate_example.visage.i
./.hg/store/data/javafx.graphicssample/resources/_java_f_x_demos/src/groups/_skew_example.visage.i
./.hg/store/data/javafx.graphicssample/resources/_java_f_x_demos/src/groups/_translate_example.visage.i
./.hg/store/data/javafx.graphicssample/resources/_java_f_x_demos/src/groups/_none_example.visage.i
./.hg/store/data/javafx.graphicssample/resources/_java_f_x_demos/src/shapes/_quad_curve_example.visage.i
./.hg/store/data/javafx.graphicssample/resources/_java_f_x_demos/src/shapes/_rect_example.visage.i
./.hg/store/data/javafx.graphicssample/resources/_java_f_x_demos/src/shapes/_cubic_curve_example.visage.i
./.hg/store/data/javafx.graphicssample/resources/_java_f_x_demos/src/shapes/_polyline_example.visage.i
./.hg/store/data/javafx.graphicssample/resources/_java_f_x_demos/src/shapes/_text_example.visage.i
./.hg/store/data/javafx.graphicssample/resources/_java_f_x_demos/src/shapes/_ellipse_example.visage.i
./.hg/store/data/javafx.graphicssample/resources/_java_f_x_demos/src/shapes/_circle_example.visage.i
./.hg/store/data/javafx.graphicssample/resources/_java_f_x_demos/src/shapes/_path_example.visage.i
./.hg/store/data/javafx.graphicssample/resources/_java_f_x_demos/src/shapes/_line_example.visage.i
./.hg/store/data/javafx.graphicssample/resources/_java_f_x_demos/src/shapes/_star_example.visage.i
./.hg/store/data/javafx.graphicssample/resources/_java_f_x_demos/src/shapes/_arc_example.visage.i
./.hg/store/data/javafx.graphicssample/resources/_java_f_x_demos/src/shapes/_polygon_example.visage.i
./.hg/store/data/javafx.graphicssample/resources/_java_f_x_demos/src/images/_images_example.visage.i
./.hg/store/data/javafx.graphicssample/resources/_java_f_x_demos/src/images/_scale_example.visage.i
./.hg/store/data/javafx.graphicssample/resources/_java_f_x_demos/src/images/_rotate_example.visage.i
./.hg/store/data/javafx.graphicssample/resources/_java_f_x_demos/src/images/_skew_example.visage.i
./.hg/store/data/javafx.graphicssample/resources/_java_f_x_demos/src/images/_translate_example.visage.i
./.hg/store/data/javafx.graphicssample/resources/_java_f_x_demos/src/filters/_filters_example.visage.i
./.hg/store/data/javafx.graphicssample/resources/_java_f_x_demos/src/filters/_shape_burst_example.visage.i
./.hg/store/data/javafx.graphicssample/resources/_java_f_x_demos/src/filters/_shadow_example.visage.i
./.hg/store/data/javafx.graphicssample/resources/_java_f_x_demos/src/filters/_noise_example.visage.i
./.hg/store/data/javafx.graphicssample/resources/_java_f_x_demos/src/filters/_blur_example.visage.i
./.hg/store/data/javafx.graphicssample/resources/_java_f_x_demos/src/transparency/_transparency_example.visage.i
./.hg/store/data/javafx.graphicssample/resources/_java_f_x_demos/src/swing/_scale_example.visage.i
./.hg/store/data/javafx.graphicssample/resources/_java_f_x_demos/src/swing/_rotate_example.visage.i
./.hg/store/data/javafx.graphicssample/resources/_java_f_x_demos/src/swing/_skew_example.visage.i
./.hg/store/data/javafx.graphicssample/resources/_java_f_x_demos/src/swing/_swing_example.visage.i
./.hg/store/data/javafx.graphicssample/resources/_java_f_x_demos/src/swing/_translate_example.visage.i
./.hg/store/data/javafx.graphicssample/resources/_java_f_x_demos/src/areas/_subtract_example.visage.i
./.hg/store/data/javafx.graphicssample/resources/_java_f_x_demos/src/areas/_x_o_r_example.visage.i
./.hg/store/data/javafx.graphicssample/resources/_java_f_x_demos/src/areas/_areas_none_example.visage.i
./.hg/store/data/javafx.graphicssample/resources/_java_f_x_demos/src/areas/_intersect_example.visage.i
./.hg/store/data/javafx.graphicssample/resources/_java_f_x_demos/src/areas/_add_example.visage.i
./.hg/store/data/javafx.lexer/test/unit/src/org/netbeans/lib/javafx/lexer/test.visage.i
./.hg/store/data/visage.weather2/resources/_weather_f_x/src/weatherfx/_loading_screen.visage.i
./.hg/store/data/visage.weather2/resources/_weather_f_x/src/weatherfx/_weather_app.visage.i
./.hg/store/data/visage.weather2/resources/_weather_f_x/src/weatherfx/_cached_image.visage.i
./.hg/store/data/visage.weather2/resources/_weather_f_x/src/weatherfx/_weather_model.visage.i
./.hg/store/data/visage.weather2/resources/_weather_f_x/src/weatherfx/_transform_helper.visage.i
./.hg/store/data/visage.weather2/resources/_weather_f_x/src/weatherfx/_weather.visage.i
./.hg/store/data/visage.weather2/resources/_weather_f_x/src/weatherfx/_animated_image.visage.i
./.hg/store/data/javafx.source/test/unit/data/org/netbeans/api/javafx/source/_tree_utilities_test.visage.i
./.hg/store/data/javafx.refactoring/test/unit/data/org/netbeans/api/javafx/source/_tree_utilities_test.visage.i
./.hg/store/data/javafx.refactoring/test/unit/data/org/netbeans/modules/javafx/refactoring/issues/_i184353.visage.i
./.hg/store/data/javafx.refactoring/test/unit/data/org/netbeans/modules/javafx/refactoring/_g_simple_vertex.visage.i
./.hg/store/data/javafx.refactoring/test/unit/data/org/netbeans/modules/javafx/refactoring/_g_simple_edge.visage.i
./.hg/store/data/visage.bestpractices/src/demos/math/_distance2_d.visage.i
./.hg/store/data/visage.bestpractices/src/demos/math/_sine.visage.i
./.hg/store/data/visage.bestpractices/src/demos/math/_arctangent.visage.i
./.hg/store/data/visage.bestpractices/src/demos/math/_sine_wave.visage.i
./.hg/store/data/visage.bestpractices/src/demos/math/_distance1_d.visage.i
./.hg/store/data/visage.bestpractices/src/demos/game/_bounce.visage.i
./.hg/store/data/visage.bestpractices/src/demos/particles/_smoke_particle_system.visage.i
./.hg/store/data/visage.bestpractices/src/demos/particles/_flock_demo.visage.i
./.hg/store/data/visage.bestpractices/src/demos/particles/_simple_particle_system.visage.i
./.hg/store/data/visage.bestpractices/src/demos/color/_color_wheel.visage.i
./.hg/store/data/visage.bestpractices/src/demos/color/_gradient_sample.visage.i
./.hg/store/data/visage.bestpractices/src/demos/motion/_linear.visage.i
./.hg/store/data/visage.bestpractices/src/demos/motion/_bouncy_bubbles.visage.i
./.hg/store/data/visage.bestpractices/src/demos/shapes/_shape_primitives.visage.i
./.hg/store/data/visage.bestpractices/src/demos/shapes/_points_and_lines.visage.i
./.hg/store/data/visage.bestpractices/src/demos/image/_transparency.visage.i
./.hg/store/data/visage.bestpractices/src/demos/image/_displaying.visage.i
./.hg/store/data/visage.bestpractices/src/demos/image/_background_image.visage.i
./.hg/store/data/visage.bestpractices/src/demos/transform/_scale.visage.i
./.hg/store/data/visage.bestpractices/src/demos/transform/_translate.visage.i
./.hg/store/data/visage.bestpractices/src/demos/transform/_rotate.visage.i
./.hg/store/data/visage.bestpractices/src/demos/input/_easing.visage.i
./.hg/store/data/visage.bestpractices/src/demos/input/_constrain.visage.i
./.hg/store/data/visage.bestpractices/src/demos/input/_mouse2_d.visage.i
./.hg/store/data/visage.bestpractices/src/demos/input/_storing_input.visage.i
./.hg/store/data/visage.bestpractices/src/demos/input/_mouse_press.visage.i
./.hg/store/data/visage.bestpractices/src/demos/input/_mouse1_d.visage.i
./.hg/store/data/visage.bestpractices/src/demos/input/_clock.visage.i
./.hg/store/data/visage.bestpractices/src/demos/input/_milliseconds.visage.i
./.hg/store/dh/visage.r/test/unit/data/goldenfi/org/netbeans/modules/visage/gsimpleedge.visagef8d8adff6c45797dd200b1fa2cf81303510f0c29.i
./.hg/store/dh/javafx.r/test/unit/data/goldenfi/org/netbeans/modules/javafx/gsimpleedge.visage04816b652f9b8352c4a527daf64d17f4a17e5002.i
./visage.refactoring/test/unit/data/org/netbeans/api/visage/source/TreeUtilitiesTest.visage
./visage.refactoring/test/unit/data/org/netbeans/modules/visage/refactoring/GSimpleVertex.visage
./visage.refactoring/test/unit/data/org/netbeans/modules/visage/refactoring/issues/I184353.visage
./visage.refactoring/test/unit/data/org/netbeans/modules/visage/refactoring/GSimpleEdge.visage
./visage.refactoring/test/unit/data/goldenfiles/org/netbeans/modules/visage/refactoring/issues/I184290/GSimpleEdge.visage
./visage.editor/src/org/netbeans/modules/visage/dataloader/VisageStage.visage_
./visage.editor/src/org/netbeans/modules/visage/dataloader/VisageCustomNode.visage_
./visage.editor/src/org/netbeans/modules/visage/dataloader/VisageEmpty.visage_
./visage.editor/src/org/netbeans/modules/visage/dataloader/VisageClass.visage_
./visage.editor/test/unit/data/code.visage
./visage.editor/test/unit/data/org/netbeans/modules/visage/editor/completion/data/ErrorneousObjectLiteralPart.visage
./visage.editor/test/unit/data/org/netbeans/modules/visage/editor/completion/data/Iz177282.visage
./visage.editor/test/unit/data/org/netbeans/modules/visage/editor/completion/data/IndexerVsCompletion.visage
./visage.editor/test/unit/data/org/netbeans/modules/visage/editor/completion/data/Iz165374.visage
./visage.editor/test/unit/data/org/netbeans/modules/visage/editor/completion/data/ClassMethods.visage
./visage.editor/test/unit/data/org/netbeans/modules/visage/editor/completion/data/Iz172046.visage
./visage.editor/test/unit/data/org/netbeans/modules/visage/editor/completion/data/Iz167875.visage
./visage.editor/test/unit/data/org/netbeans/modules/visage/editor/completion/data/Iz165928.visage
./visage.editor/test/unit/data/org/netbeans/modules/visage/editor/completion/data/Iz175333.visage
./visage.editor/test/unit/data/org/netbeans/modules/visage/editor/completion/data/OnlyPackage.visage
./visage.editor/test/unit/data/org/netbeans/modules/visage/editor/completion/data/Model.visage
./visage.editor/test/unit/data/org/netbeans/modules/visage/editor/completion/data/Iz171484.visage
./visage.editor/test/unit/data/org/netbeans/modules/visage/editor/completion/data/Iz171185.visage
./visage.editor/test/unit/data/org/netbeans/modules/visage/editor/completion/data/Iz173358.visage
./visage.editor/test/unit/data/org/netbeans/modules/visage/editor/completion/data/Iz156041.visage
./visage.editor/test/unit/data/org/netbeans/modules/visage/editor/completion/data/Color.visage
./visage.editor/test/unit/data/org/netbeans/modules/visage/editor/completion/data/Iz150039.visage
./visage.editor/test/unit/data/org/netbeans/modules/visage/editor/completion/data/Iz173838.visage
./visage.editor/test/unit/data/org/netbeans/modules/visage/editor/completion/data/Iz182293.visage
./visage.editor/test/unit/data/org/netbeans/modules/visage/editor/completion/data/Iz178366.visage
./visage.editor/test/unit/data/org/netbeans/modules/visage/editor/completion/data/Iz171897.visage
./visage.editor/test/unit/data/org/netbeans/modules/visage/editor/completion/data/Iz159678.visage
./visage.editor/test/unit/data/org/netbeans/modules/visage/editor/hints/data/AddHints.visage
./visage.editor/test/unit/data/code.visage.txt
./visage.editor/test/unit/data/code.visage.semantic
./visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/TemplateIm.visage
./visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/TemplateFor.visage
./visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/TemplateBi.visage
./visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/TemplateTrid.visage
./visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/TemplateWe.visage
./visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/TemplateIns.visage
./visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/TemplateTrir.visage
./visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/TemplatePu.visage
./visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/TemplateRe.visage
./visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/TemplateTof.visage
./visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/TemplateIf.visage
./visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/TemplateTr.visage
./visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/TemplateBr.visage
./visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/TemplatePe.visage
./visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/TemplateIn.visage
./visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/TemplatePa.visage
./visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/TemplateEl.visage
./visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/TemplateSo.visage
./visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/TemplateDe.visage
./visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/TemplateFu.visage
./visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/TemplateCa.visage
./visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/TemplatePr.visage
./visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/TemplateSout.visage
./visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/TemplateNu.visage
./visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/TemplateFa.visage
./visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/TemplateEx.visage
./visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/TemplatePi.visage
./visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/TemplateIof.visage
./visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/TemplateCn.visage
./visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/TemplateWh.visage
./visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/TemplateInd.visage
./visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/TemplateSt.visage
./visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/TemplateTh.visage
./visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/TemplateEli.visage
./visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/TemplateAs.visage
./visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/TemplateIfe.visage
./visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/TemplateInv.visage
./visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/TemplateTw.visage
./visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/TemplateDef.visage
./visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/TemplateInsa.visage
./visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/TemplateVar.visage
./visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/TemplateSerr.visage
./visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/TemplateAb.visage
./visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/TemplateCl.visage
./visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/TemplateTrii.visage
./visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/TemplateBo.visage
./visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/TemplateFi.visage
./visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/TemplateInsb.visage
./visage.editor/test/qa-functional/data/fx-prj-3/src/fxprj3/TemplateTrin.visage
./visage.editor/test/qa-functional/data/formatting/FormatImport001.visage
./visage.editor/test/qa-functional/data/fx-prj-2/src/fxprj2/FormatImport001.visage
./visage.editor/test/qa-functional/data/fx-prj-2/src/fxprj2/BackgroundImage.visage
./visage.editor/test/qa-functional/data/fx-prj-1/src/classes/FXTestClassVar2.visage
./visage.editor/test/qa-functional/data/fx-prj-1/src/classes/FXTestClass008.visage
./visage.editor/test/qa-functional/data/fx-prj-1/src/classes/FXTestClass001.visage
./visage.editor/test/qa-functional/data/fx-prj-1/src/classes/userobjects/UserObject001.visage
./visage.editor/test/qa-functional/data/fx-prj-1/src/classes/FXTestClass002.visage
./visage.editor/test/qa-functional/data/fx-prj-1/src/classes/FXTestClassVar1.visage
./visage.editor/test/qa-functional/data/fx-prj-1/src/classes/FXTestClass005.visage
./visage.editor/test/qa-functional/data/fx-prj-1/src/classes/FXTestClass006.visage
./visage.editor/test/qa-functional/data/fx-prj-1/src/classes/FXTestClass003.visage
./visage.editor/test/qa-functional/data/fx-prj-1/src/classes/FXTestClass007.visage
./visage.editor/test/qa-functional/data/fx-prj-1/src/classes/FXTestClass004.visage
./visage.editor/test/qa-functional/data/fx-prj-1/src/packages/FXTestPackage.visage
./visage.editor/test/qa-functional/data/fx-prj-1/src/packages/FXTestEmpty.visage
./visage.editor/test/qa-functional/data/fx-prj-1/src/fxprj1/FXTest1.visage
./visage.editor/test/qa-functional/data/fx-prj-1/src/frame/stage/content/ContentLine1.visage
./visage.editor/test/qa-functional/data/fx-prj-1/src/frame/stage/content/ContentRectangle1.visage
./visage.editor/test/qa-functional/data/fx-prj-1/src/frame/stage/content/ContentPolyline1.visage
./visage.editor/test/qa-functional/data/fx-prj-1/src/frame/stage/content/ContentEllipse1.visage
./visage.editor/test/qa-functional/data/fx-prj-1/src/frame/stage/content/ContentText1.visage
./visage.editor/test/qa-functional/data/fx-prj-1/src/frame/stage/content/ContentArc1.visage
./visage.editor/test/qa-functional/data/fx-prj-1/src/frame/stage/content/LinearGradient1.visage
./visage.editor/test/qa-functional/data/fx-prj-1/src/frame/stage/content/ContentColor.visage
./visage.editor/test/qa-functional/data/fx-prj-1/src/frame/stage/content/ContentCircle1.visage
./visage.editor/test/qa-functional/data/fx-prj-1/src/frame/stage/content/ContentImage1.visage
./visage.editor/test/qa-functional/data/fx-prj-1/src/frame/stage/content/ContentPolygon1.visage
./visage.editor/test/qa-functional/data/fx-prj-1/src/frame/stage/Stage001.visage
./visage.editor/test/qa-functional/data/fx-prj-1/src/frame/Frame001.visage
./visage.editor/test/qa-functional/data/fx-prj-1/src/declarations/TopLvlVar2.visage
./visage.editor/test/qa-functional/data/fx-prj-1/src/declarations/TopLvlVar1.visage
./visage.editor/test/qa-functional/data/fx-prj-1/src/declarations/Animation001.visage
./visage.editor/test/qa-functional/data/fx-prj-1/src/declarations/TopLvlVar3.visage
./visage.editor/test/qa-functional/data/fx-prj-1/src/imports/FXTestImportVisageSceneTransform.visage
./visage.editor/test/qa-functional/data/fx-prj-1/src/imports/FXTestImportVisageSceneEffectLight.visage
./visage.editor/test/qa-functional/data/fx-prj-1/src/imports/FXTestImportVisageS.visage
./visage.editor/test/qa-functional/data/fx-prj-1/src/imports/FXTestImportJava.visage
./visage.editor/test/qa-functional/data/fx-prj-1/src/imports/FXTestImport.visage
./visage.editor/test/qa-functional/data/fx-prj-1/src/imports/FXTestImportVisageSceneEffect.visage
./visage.editor/test/qa-functional/data/fx-prj-1/src/imports/FXTestImportVisageScene.visage
./visage.editor/test/qa-functional/data/fx-prj-1/src/imports/FXTestImportVisageFXUnit.visage
./visage.editor/test/qa-functional/data/fx-prj-1/src/imports/FXTestImportVisageSceneLayout.visage
./visage.editor/test/qa-functional/data/fx-prj-1/src/imports/FXTestImportVisageSceneText.visage
./visage.editor/test/qa-functional/data/fx-prj-1/src/imports/FXTestImportVisageSceneMedia.visage
./visage.editor/test/qa-functional/data/fx-prj-1/src/imports/FXTestImportJava2.visage
./visage.editor/test/qa-functional/data/fx-prj-1/src/imports/FXTestImportVisageExt.visage
./visage.editor/test/qa-functional/data/fx-prj-1/src/imports/FXTestImportVisageLang.visage
./visage.editor/test/qa-functional/data/fx-prj-1/src/imports/FXTestImportVisage.visage
./visage.editor/test/qa-functional/data/fx-prj-1/src/imports/FXTestImportVisageScenePaint.visage
./visage.editor/test/qa-functional/data/fx-prj-1/src/imports/FXTestImportVisageExtSwing.visage
./visage.editor/test/qa-functional/data/fx-prj-1/src/imports/FXTestImportVisageSceneImage.visage
./visage.editor/test/qa-functional/data/fx-prj-1/src/imports/FXTestImportVisageReflect.visage
./visage.editor/test/qa-functional/data/fx-prj-1/src/imports/FXTestImportVisageApplication.visage
./visage.editor/test/qa-functional/data/fx-prj-1/src/imports/FXTestImportVisageInput.visage
./visage.editor/test/qa-functional/data/fx-prj-1/src/imports/FXTestImportVisageAnimation.visage
./visage.editor/test/qa-functional/data/fx-prj-1/src/imports/FXTestImportVisageSceneGeometry.visage
./visage.editor/test/qa-functional/data/fx-prj-1/src/imports/FXTestImportVisageAsync.visage
./visage.editor/test/qa-functional/data/fx-prj-1/src/imports/FXTestImportVisageUtil.visage
./visage.editor/test/qa-functional/data/fx-prj-1/src/applications/FXTestApplication3.visage
./visage.editor/test/qa-functional/data/fx-prj-1/src/applications/FXTestApplication5.visage
./visage.editor/test/qa-functional/data/fx-prj-1/src/applications/FXTestApplication4.visage
./visage.editor/test/qa-functional/data/fx-prj-1/src/applications/FXTestApplication2.visage
./visage.editor/test/qa-functional/data/fx-prj-1/src/applications/FXTestApplication6.visage
./visage.editor/test/qa-functional/data/fx-prj-1/src/applications/FXTestApplication1.visage
./visage.weather2/resources/WeatherFX/src/weatherfx/WeatherApp.visage
./visage.weather2/resources/WeatherFX/src/weatherfx/TransformHelper.visage
./visage.weather2/resources/WeatherFX/src/weatherfx/WeatherModel.visage
./visage.weather2/resources/WeatherFX/src/weatherfx/LoadingScreen.visage
./visage.weather2/resources/WeatherFX/src/weatherfx/Weather.visage
./visage.weather2/resources/WeatherFX/src/weatherfx/AnimatedImage.visage
./visage.weather2/resources/WeatherFX/src/weatherfx/CachedImage.visage
./visage.bestpractices/src/demos/math/Arctangent.visage
./visage.bestpractices/src/demos/math/Distance2D.visage
./visage.bestpractices/src/demos/math/SineWave.visage
./visage.bestpractices/src/demos/math/Sine.visage
./visage.bestpractices/src/demos/math/Distance1D.visage
./visage.bestpractices/src/demos/game/Bounce.visage
./visage.bestpractices/src/demos/particles/SmokeParticleSystem.visage
./visage.bestpractices/src/demos/particles/SimpleParticleSystem.visage
./visage.bestpractices/src/demos/particles/FlockDemo.visage
./visage.bestpractices/src/demos/color/ColorWheel.visage
./visage.bestpractices/src/demos/color/GradientSample.visage
./visage.bestpractices/src/demos/motion/Linear.visage
./visage.bestpractices/src/demos/motion/BouncyBubbles.visage
./visage.bestpractices/src/demos/shapes/ShapePrimitives.visage
./visage.bestpractices/src/demos/shapes/PointsAndLines.visage
./visage.bestpractices/src/demos/image/Displaying.visage
./visage.bestpractices/src/demos/image/Transparency.visage
./visage.bestpractices/src/demos/image/BackgroundImage.visage
./visage.bestpractices/src/demos/transform/Rotate.visage
./visage.bestpractices/src/demos/transform/Translate.visage
./visage.bestpractices/src/demos/transform/Scale.visage
./visage.bestpractices/src/demos/input/Mouse1D.visage
./visage.bestpractices/src/demos/input/Milliseconds.visage
./visage.bestpractices/src/demos/input/Constrain.visage
./visage.bestpractices/src/demos/input/Easing.visage
./visage.bestpractices/src/demos/input/MousePress.visage
./visage.bestpractices/src/demos/input/Mouse2D.visage
./visage.bestpractices/src/demos/input/StoringInput.visage
./visage.bestpractices/src/demos/input/Clock.visage