-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathChangeLog
2643 lines (1941 loc) · 75.1 KB
/
ChangeLog
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
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2013-08-09 jcb
* fix Tom-EMF mappings generation: when using the -prefix option in
conjunction of the -nt one (use of subtyping), if the super type is an Ecore
type, it now correctly generated (including ecore.tom and without any prefix)
* this should be extended in the future for useful libraries such as uml2.tom
2013-08-08 jcb
* fix Tom-EMF mappings generation:
- when using a prefix, prefix is not doubled anymore for variadic operators,
naming convention is now consistent, should fix bug #16061
- when using a prefix, EMF Ecore types (defined in emf/ecore.tom) are not
generated (they were generated with the prefix), so do their corresponding
variadic operator
- EStringToStringMapEntry has been added to Ecore types, Entry mapping is
not generated anymore (already defined in emf/ecore.tom)
- fix multiple inclusion of builtin (and ecore) mappings: when builtin and
ecore types were found, an %include was generated even if it had already
been generated previously
2013-08-05 jcb
* add UML2 mappings
2013-08-01 jcb
* fix bug occuring when no resolve and no tracelink are used
2013-03-21 jcb
* bootstrap and bootinstall -> Tom-2.10
2013-03-13 jcb
* change output of transformation/simplepdltopetrinet example to be directly
handled by TINA toolbox
2013-03-11 jcb
* update transformation/simplepdltopetrinet example (re-organization)
2013-03-07 jcb
* update authors list
2013-02-12 jcb
* minor fixes
- licence update (add "Universite de Lorraine")
- fix Inria name: s/INRIA/Inria
- remove utf-8 and accented characters
2013-02-08 jcb
* bootstrap and bootinstall -> Tom-2.10-rc3
2013-01-31 ccalves
* Multi Object Focus
- shift added
- up removed
- delimitated continuations
- added macros system to have readable types
2012-12-31 jcb
* Tom-2.10-rc2
* add instances of SimplePDL models for SimplePDLToPetriNet example
* update Eclipse plugin
2012-12-10 pem
* change semantics of all: getChildren returns an array of children for
list-operators
* bootstrap and bootinstall
2012-10-25 jcb
* bootstrap and bootinstall to prepare Tom-2.10-rc1
* change otion message (default used typer)
* update SimplePDLToPetriNet example
* change resolve elements generation (attributes names) to limit names clashes
2012-10-24 jcb
* add %tracelink and %resolve to Eclipse plugin
2012-10-23 jcb
* update Eclipse plugin:
- add %transformation
- add Ada libraries
- update Java mappings and libraries
2012-10-21 jcb
* fix transformer plugin :
- move language specific code
- clean code in backend plugin
* bootstrap
2012-10-21 jcb
* TransformerPlugin: fix clash names
2012-10-16 jcb
* transformation:
- fix to import .ecore file from othe directories than .
- fix mappings generation (SimplePDLToPetriNet example)
* merge transformation branch into master one
2012-10-13 jcb
* fix and clean SimplePDLToPetriNet example
2012-09-07 jcb
* remove "New Typer activated" message in typing phase
2012-08-30 mpantel
* add Ada examples
2012-08-23 jcb
* transformation: %tracelink syntax change (+update example)
2012-08-09 mpantel
* add and improve Ada examples (btree)
2012-08-09 jcb
* add DefaultValue.t example to show how to use backquote with get_default
2012-08-08 jcb
* merge merge-master-ada branch into master
2012-08-08 mpantel
* Add Tom Ada strategy use examples
2012-08-07 mpantel
* Add Ada examples
2012-08-07 jcb
* merge tom-ada from 07/09/2011 into master
* update AdaGenerator to implement abstract methods from transformation branch
2012-08-06 pem
* remove lazyType option
* simplify Compiler.t: generate less Universal types
2012-07-30 jcb
* fix utils/LinkClass (transformation)
* update Eclipse plugin (add 2.10 feature, fixes, etc.)
2012-07-27 jcb
* fix Eclipse plugin to handle Tom signature changes
* fix Eclipse plugin to remove few hundreds of warnings
2012-07-26 jcb
* Tom-EMF:
- fix EEnum case to avoid mappings generation containing non
alpha-numerical characters: use of 'name' instead of 'literal' for
EEnumLiteral ('+'->'Plus')
- fix side effect of -prefix option
2012-07-25 jcb
* Tom-EMF: fix prefix option for variadic operators
2012-07-16 jcb
* modify and simplify signature (transformation)
* change resolve generation
* update SimplePDLToPetriNet example to conforme with new %transformation
syntax
* clean and simplify TransformerPlugin code
* Simplify and clean %transformation parsing
2012-07-02 jcb
* fix Ecore mappings (EObject does not extends EObject)
* Tom-EMF: change options management
* Tom-EMF: add prefix option to avoid names clashes
2012-06-22 jcb
* add Eclipse plugin sources into git repository + first updates
2012-06-13 jcb
* fix plugins to print file names when "-v" option si enabled
2012-06-06 jcb
* fix TransformerPlugin -> working prototype
* change backend to have working transformation prototype
* add a working use case for %transformation: SimplePDLToPetriNet
2012-06-05 jcb
* clean transformation signature, remove ueless constructors
2012-06-01 jcb
* GrammarNazi time: fix typo s/childs/children whole Tom compiler+Gom+library
* transformation: remove static methods
2012-05-31 jcb
* transformation: fix ResolveStratInstruction generation
* import master modifications, merge transformation and master
* bootstrap
2012-05-31 pem
* make generation of ResolveStrat more abstract
2012-05-24 jcb
* fix Full Qualified Name bug
* transformation:
- update %transformation backend + fix multiple code generation
- update parser to prepare syntax changes
- update TransformerPlugin (Resolve part)
2012-05-21 jcb
* update Windows iss script: CLASSPATH modification (EMF libraries)
* fix parser to allow backquote char in %match subject
2012-05-18 pem
* NewKernelTyper: syntactic improvments
2012-05-16 pem
* integrate Claudia's fix
* add Claudia's fix to stable version
2012-05-16 jcb
* remove dead code and unused tokens in Tom parser
* fix build.xml (continuous integration tasks)
* fix Tom-EMF and port it into stable
* update Windows iss script
2012-05-16 tavaresc
* NewKernelTyper: fix tactic to avoid variable capture
* add an example
2012-05-15 pem
* merge subtype into master
* bootstrap
2012-05-14 pem
* activate newtyper by default
* improved newtyper efficiency
* merge with master branch
2012-05-14 tonio
* Be more specific about types in the used hamcrest Matchers
* update tests
2012-05-11 jcb
* add a temporary transformation example
* integrate %transformation, %tracelink and %resolve
* add ReferenceClass
2012-05-10 tonio
* simplify Gom adt
2012-05-08 tonio
* simplify Gom ast
* update junit library to 4.10
* update examples and tests
2012-04-25 jcb
* port Emilie's bugfix into stable branch
2012-04-23 jcb
* fix TestHandWrittenMapping.t
2012-04-20 emilie
* fix the generated code for the introspacetor of array operators (bug #13741).
We consider that the children of such operators are all its elements.
2012-04-13 jcb
* bootstrap to integrate Emilie's bugfix #14128 into stable branch
2012-04-11 emilie
* fix the bug #14128: the Make_ strategy's children are now identical to all
its slots (including the builtin slots thanks to the VisitableBuiltin wrapper)
2012-04-10 emilie
* add sl test
* update ExpanderPlugin
2012-04-10 jcb
* transformation: add ReferenceClass, update backend, remove first implem. of
specialized backquote
2012-04-04 jcb
* add org.eclipse.emf.ecore.xmi jar archive in distributed libs
* Tom-EMF: change naming convention of EEnum types
2012-03-20 jcb
* add/change MakeDecl corresponding to a Transformation
* modify construct to be handled as a common strategy -> pb with make
* remove link model generation to try to have an intermediate working version
* add Transfo2 example
2012-03-15 jcb
* fix bug in ResolveStratDecl transformation
2012-03-07 jcb
* transformation: parser, transformer, backend
2012-02-23 emilie
* new examples of hand-written introspectors (Java Integer & Swing components)
* fix a bug (two instances of BoulderDash2D were created)
2012-02-23 jcb
* add a default %op implent generation in the EMF mappings generator
2012-02-17 tavaresc
* fix subtyping examples
2012-01-05 jcb
* transformation
2011-12-27 jcb
* add %op implement extension
2011-12-16 jcb
* merge masten into transformation
* change Tom-EMF
2011-12-09 tavaresc
* newtyper: add verification for types of each variable in pattern.
2011-11-07 jcb
* minor update of EcoreContainmentIntrospector
2011-10-27 jcb
* add generation of intermediate files in DesugarerPlugin (-i option)
2011-10-14 jcb
* bootstrap and bootinstall -> tom-2.9
2011-10-08 tavaresc
* Fix type constraint for a 'match' (tPattern <: tSubject).
* Exclude Record and TestRecord from junit tests with new typer
2011-10-04 tavaresc
* update type inference with fix of type errors
* bootstrap and bootinstall -> tom-2.9-rc2
2011-10-04 francois
* parserv3: fix parsing of a << T b(c,d) in a match constraint
2011-10-04 jcb
* bootstrap and bootinstall -> tom-2.9-rc1
2011-09-30 tavaresc
* update new typer verbose mode (number of constraints and type * variables)
* Add explanation about optimization of typer wrt its formalisation.
2011-09-30 jcb
* fix Tom-EMF to handle reserved keywords as constructors arguments
* fix error message in case of incompatible get_default decl
* re-generate ecore mapping to fix reserved keywords problem
2011-09-30 francois
* parserv3: fix import problem
2011-09-29 jcb
* add a specific case for EcorePackage mapping generation
* new ecore.tom mapping including subtyping
2011-09-29 francois
* parserv3: fix the noOption FileName case
* parserv3: fix cast parsing
2011-09-27 pem
* one more bootstrap
2011-09-27 jcb
* bootstrap
2011-09-23 jcb
* merge master into subtype
2011-09-22 francois
* parserv3: fix Composite in parser
2011-09-20 francois
* parserv3: fix problem with string in BQ parser
2011-09-19 tavaresc
* Name constraint resolution methods as in my thesis.
* Remove unnecessary method replaceInInputTVarList.
2011-09-19 francois
* parserv3: fix a problem with IDENTIFIER-DIGIT in parser
2011-09-16 francois
* parserv3: fix bug on %include
2011-09-12 tavaresc
* Fix non-linearity of star variables (used also as simple variables)
* Fix regression tests to use newtyper
* Fix error caused by a bug of constraint disjunction
2011-09-11 pem
* parser v3: translate BQ constructs
2011-09-10 pem
* technical commit to merge
* reorganize plugins and parsers
* moved newparser into tom/engine/parser/antlr3
* tom/engine/newparser is no longer used
* translate TypetermConstruct
* removed get_implementation construct
* print symbolTable
* fill symbolTable using %op
* removed single line comments in %strategy * add OriginTracking to Symbol in
Converter
2011-09-09 tavaresc
* Fix non-linearity of star variables also used as simple variables
2011-09-09 francois
* newparser: fix %gom
2011-09-09 pem
* newparser: improve CST signature
* improve Tree viewer
2011-09-09 jcb
* newparser: fix and improve backquote
* parser v3: add optionlsit in BQ*
2011-09-08 tavaresc
* add example to deal with non-linear star variables
2011-09-07 jcb
* newparser: change parser behaviour to handle blocks in %gom construct
2011-09-07 francois
* newparesr: meta-quote (%[...]%)
2011-09-06 jcb
* newparser: change ParserAction to handle %gom options
2011-09-06 francois
* newparser now handle labels
2011-09-05 jcb
* newparser now handles 'p << T s' in pattern-matching (%match)
2011-08-27 pem
* bootinstall
* integrate subtype and newparser into master
* bumped to version 2.9
2011-08-25 jcb
* improve newparser: %strategy
2011-08-22 jcb
* improve newparser:
* ParseIncludeConstruct
* get_default
* backquote
* fixes in lexers and parser
2011-08-18 pem
* improve Gom: generate better names for args of congruence strategies
* merge TyperPlugin with NewTyper
* bootstrap
2011-08-01 jcb
* delete 'literals duplication' (and improve sonar score
* remove dead code
* improve sonar score by improving generated code
2011-07-25 jcb
* add automatic subtyping in Tom-EMF to stick with Eclipse standard: an
element that does not extends an other element of the current meta-model
extends EObject
2011-07-25 jcb
* fix Tom-EMF to avoid multiple generation of mappings
2011-06-15 pem
* bootinstall
2011-06-10 pem
* improved checker to detect circular references
* improved constraint pretty-printer
2011-06-07 pem
* added BQRecordAppl with `f[arg1=a()] syntax
2011-05-25 tavaresc
* NewKernelTyper: add a list with type variables occurring in pattern (to decide if all
"important" tom types were inferred.
* NewKernelTyper: separate phases of constraint resolution and eliminate
unnecessary rules. (except for normalization, all other phases reduces or
maintain the size of the constraint list).
* Revert to older version of Syntactic Propagator.
2011-05-24 pem
* bootinstall
2011-05-24 jcb
* add get_default generation in Tom-EMF
2011-05-20 pem
* add the possibility to define default-value in a %op
get_default(slotname) { ... }
use the '_' sign in a backquote to denote a default-value
example: `f(a(),_)
2011-04-22 tavaresc
* Fix collect of variables in NewKernelTyper (now the varList is correctly
updated after call of strategy).
2011-04-13 pem
* handle non linear AC pattern
f(C*,X1*,X1*,X2*,X2*) -> ...
do not yet handle f(X1*,X1*,X2*,X2*) -> ...
2011-04-13 jcb
* add mappings generation for several EPackage at once in Tom-EMF
* change Tom-EMF mappings generation (into files instead of stdout)
2011-04-08 pem
* improved pretty-printer for BQTerm
* relax constraint on HasTerm (only the name is considered)
* improved the ordering constraints algorithm
2011-04-08 tavaresc
* Set optimizer to true in OptimizerPlugin..
* Add a rule to order (MatchConstraint,OrConstraint) in PreGenerator.
* Improve test of different types in ConstraintGenerator (since it can
be null, it's better to use %match then if).
2011-04-01 tavaresc
* Fix problem of context of patterns and subjects (reset list of patterns per
rule).
2011-03-18 tavaresc
* Add a test in order to well type a "visit".
2011-02-16 tavaresc
* Split strategy solveSubConstraints into separated strategies and methods.
* The method detectFail returns a 'boolean' and a new kind of constraint
'False()' is added into the set constraint. (NewKernelTyper)
2011-02-15 tavaresc
* Set type of new subject with the type of old subject (in compiler).
* Fix the insertion of subtyping constraints.
* Handle others Code's constructors in TomBase.
2011-02-08 tonio
* Update junit to 4.8.2
* Update ant to 1.8.2
2011-02-08 pem
* remove ant*.jar from lib/tools (and tom-runtime-full.jar)
* update ant*.jar to version 1.7.1 (moved to lib/compiletime)
* bumped to version 2.8rc3
2011-02-02 tavaresc
* Detect when a slot has been declared with two different sorts.
2011-02-01 tavaresc
* Fix cast type for slots of a RecordAppl.
2011-01-31 tavaresc
* Fix cast type in code generation of "MatchConstraint".
2011-01-28 tavaresc
* Re-add test for lazyType since bultin types need precise types for automatically generated methods.
2011-01-06 tavaresc
* Fix conditions for subtype relations and comment printlns.
2011-01-06 pem
* Add a cast in the generated code to deal with subtyping.
2011-01-06 jcb
* fix bug #8467
* fix bug #8430
* fix bug #11538
2010-12-21 tavaresc
* Update explicit type after type inference (in "old" kernel typer).
* Fix a bad modification of compiler concerning explicit types.
2010-12-17 tavaresc
* Move tests "isListOperator" and "isArrayoperator" to the moment when inferring
types of a RecordAppl (resp. BQAppl).
* Improve javadoc.
2010-12-15 tavaresc
* Add information "WithSymbol" for all list and array operators (in method
"UpdateSumbolTable" of Typer)
* Fix type constraint for VariableStar ("=" instead of "<:")
* Start to fix test of subtyping considering symmetry (test equality).
2010-12-10 tavaresc
* Fix use of cast type and subject type in method renameSubjects :
Match(p,s,castType)
-> Match(object,s,castType) /\ IsSort(castType,object) /\
Match(freshSubj,Cast(object),freshSubjType) /\ Match(p,freshSubj,castType)
* But still need to verify the casts done after the compiler.
2010-12-09 tavaresc
* In SyntaxChecker :
- remove error message for a match constraint whose both subject and explicit
type has unknown types and consequently remove type inference done during
syntax checking;
- fix test for undeclared types.
* In NewKernelTyper : remove test for undeclared types.
2010-12-08 tavaresc
* Replace syntax "%subtype A <: B" by "%typeterm A extends B {...}".
2010-12-03 tavaresc
* Fix supType method in order to take the lowest common upperTypes between two
given types (in NewKernelTyper).
2010-11-19 tavaresc
* Remove dead code in Backend and TypeChecker plugins.
2010-11-18 tavaresc
* Add case 6 {Var1 <: TClos1, TClos2 <: Var2} for enumerationSolutions method in
NewKernelTyper.
* Add test before call solveSubConstraints (test if the constraint list is not
empty) in NewKernelTyper.
2010-11-10 pem
* re-activated TomSyntaxChecker
* improved the detection of variables not instantiated in a disjunction
* constants like "5" are no longer typed. This may cause a problem one day
* detect unknown type in p <<A t
* start checking BQAppl
* bootstrap
2010-11-08 tavaresc
* Fix code generation for those arguments having type smaller (subtype) than the expected by the tom signature.
2010-11-03 tavaresc
* Fix hasUndeclaredType method and call it to test the explicit type of a
MatchConstraint.
2010-10-28 tavaresc
* Fix "maxType" method in order to obtain an intersection list.
* Add subtype examples.
2010-10-27 tavaresc
* Do renaming to avoid two different variables have teh same name.
* Remove test of undeclared type.
* Test new constraint for "MatchConstraint".
2010-10-26 tavaresc
* Start rewriting examples using subtypes.
* Put some println in comments.
* Add method for enumeration of solutions.
* Fix verification if a type constraint already exist in a given type constraint list.
* Add method for enumeration of solutions.
2010-10-22 tavaresc
* Remove bad rules.
2010-10-20 tavaresc
* Fix new rules.
* Add new subtyping constraint rules.
2010-10-14 tavaresc
* New branch to work with subtypes.
2010-10-13 tavaresc
* Fix insertion of Subtyping constraintes.
2010-10-11 tavaresc
* Treat expansion of "MatchConstraint' in order to enable subtypings.
2010-10-08 tavaresc
* Add subtyping constraints resolution.
2010-10-06 tavaresc
* Treat multiple upper types.
2010-09-24 tavaresc
* Add an argument "TomType" to MatchConstraint and propagate this.
* Remove temporary examples.
2010-09-20 tavaresc
* Add parsing of %subtype.
2010-09-17 tavaresc
* Remove TypeWithSymbol and propagate this.
2010-09-16 tavaresc
* Change signature of TomType "Type" and propagate this.
2010-08-26 tavaresc
* Fix inference for Composite composed by more then one CompositeBQTerm
and/or CompositeTL.
* Fix inference for both single and composed "Composite".
* Handle errors when typer is not able to infer the type of a subject.
* Add verification of function arities.
2010-08-19 tavaresc
* Add files to "test" polymorphism.
2010-07-28 tavaresc
* Optimize new typer adding new unification algorithm without recursive calls (method
solveConstraints).
* Add a method for saturation of the "substitutions" hashMap.
2010-07-27 tavaresc
* Optimize new typer transforming the strategy "solveConstraints" into a
method.
2010-07-26 tavaresc
* Optimize new typer replacing recursive calls by "for" loops.
2010-07-23 tavaresc
* Remove special treatment for symbols named "realMake" ("rules()" in GOM).
* Take the method InferAllTypes as the start-up method instead of inferCode.
* Add a visit to the Code of form "Tom(codeList)" or "TomInclude(codeList)" in
order to infer types of an included code too.
* Now, the inference for the codeList is done by the method inferCodeList which
calls the main strategy inferTypes for whichever kind of code.
2010-07-21 pem
* removed anonymous op from tom sources
* bootstrap
* integrated newtyper in tests
2010-07-20 pem
* removed anonymous operators
* except in explicit XML notation : <A>(_*,x,_*)</A> for instance
* ported all tests and examples
2010-07-13 tavaresc
* Fix inference for the explicit arguments of a RecordAppl : typer takes the
type of a rank by using the name of the TomSymbol instead of
traverse both list of arguments and types of the domain of the term in teh
same order.
2010-07-12 tavaresc
* Apply type variables only for terms with unknonw types:
- before : all terms were typed with a fresh type variable;
- now : only terms with unknown types are typed with a fresh type variable.
2010-07-08 tavaresc
* Improve new typer by resetting set of fresh type variables after each %match
or %strategy.
2010-07-06 tavaresc
* Fix inference for Composite having a list of CompositeBQTerm as
element.
2010-06-29 tavaresc
* Improve error messages for new typer.
* Add task "junitnt" into the build.xml (in directory "examples") to compile
the examples using the new typer.
2010-06-24 tavaresc
* Fix a bug when using a constructor whose tomSymbol can not be set by neither
its tomName nor its Type.
2010-06-23 tavaresc
* Finish adding tasks "junitnt" and "testnt" as targets into the build.xml to
compile the directory "test" using the new typer.
* Fix message error for undeclared types.
2010-06-22 tavaresc
* Add a target into the build.xml to compile the directory "test" using the new
typer. Must to be continued.
* Fix some test files in order to successfully compile.
* Comment the method of message error for undeclared types.
2010-06-21 tavaresc
* Add a message error for undeclared types.
* Remove EmptyType() when adding a type constraint.
2010-05-31 tavaresc
* Replace argument "Option" by "Options" in files .gom and propagate this.
* (i.e.: "Option:OptionList" by "Options:OptionList")
2010-05-27 pem
* removed UnameVariable and UnamedVariableStar, EmptyName() is used instead
to denote an '_'
2010-05-12 tavaresc
* Start adding error messages for typer.
2010-05-06 tavaresc
* Fix inference for BQAppl with TomSymbol null.
* In this case, BQAppl becames FunctionCall.
* Need to be tested.
* Fix inference for lists with sublists, both having different
constructors (symbols).
2010-05-05 tavaresc
* Add status of compilation using the new typer into test/README file.
* Add duplications of tom files with only Named Symbol.
2010-04-28 tavaresc
* Fix treatment of Composites to handle calls of java methods preceded by a backquote.
* Delete some unnecessary "putType" calls.
2010-04-23 tavaresc
* New version of the new typer: since terms are modified during the inference
(e.g. "concString" is added to a string which does not have a constructor), now
methods have no more type "void".
2010-04-20 jcb
* tom/engine log system should be completely ported
* tom/gom log system should be completely ported
2010-04-19 emilie
* add two new properties tom.platform.error.formatter for specifying a
specific formatter for the platform and tom.platform.error.logfile
for putting log records into a specific file
* start to write a specific Formatter for regression tests
2010-04-19 jcb
* Continue to port log system
* fix a bug in examples/stategycompiler/StategyCompiler.t caused by single-line
comments
2010-04-16 tonio
* factorize error methods
* factorize part of log handling
* formatting
2010-04-16 tavaresc
* New version of the new typer: The methods applying inference rules are transformed in strategies.
2010-04-15 pem
* introduced a unique way top log errors:
TomMessage.error(logger,filename,linenumber,TomMessage.msg, args...)
(same for warning, info, fine, finer, ...)
* DO NOT USE logger.log(...) anymore
* removed BuildReduceTerm (was not used)
2010-04-14 tavaresc
* add an argument to TypeVar and move it from TargetLanguageType to
TomType
2010-04-14 pem
* bootinstall
* re-introduce error detection (in desugarer)
* detect nested anonymous list (a,(b,c))
2010-04-13 tavaresc
* add a newtyper option in GOM ant task
2010-04-11 pem
* removed a type-expansion which was performed twice in the TyperPlugin (this is now more efficient)
2010-04-08 pem
* removed unecessary code in Typer (work was done twice!)
2010-04-07 pem
* add a newtyper option in ant task
* introduced TargetLanguageType for TLType and EmptyTargetLanguageType
2010-03-31 tavaresc
* NewTyper : Apply replacement of typeVars not only in a ConstraintInstructionList
but also in the rest of the code (which is not necessarily a InstructionToCode).
2010-03-31 pem
* switch for TyperPlugin vs NewTyper
* improved code of NewTyper
2010-03-30 jcb
* improve code to be more respectful of standards and good practices (need
bootstrap to be visible in sonar application)
2010-03-25 tavares
* improve new typer
* modify SymbolTable
2010-03-12 tavares
* light documentation of new typer code
2010-03-09 tonio
* improve code (formatting, cosmetics, etc.)
2010-03-03 tavares
* disjunction, numeric match and alias in the new typer
2010-02-18 tonio
* use jar instead of zip to build jars
* avoid duplicate files in jar (for standards)
2010-02-17 radu
* fix bug #8955 (which was caused by having the same variable both as subject
and tom variable)
2010-02-17 balland
* fix package name in examples
* few "admin tasks"
2010-02-12 balland
* fix the bug #9607 (a Tom error is now logged when the type of the subject cannot be inferred
* fix current typer
2010-02-12 brauner
* modified lemu in order to detect loops and pretty print proofs as trees
2010-02-06 tonio
* improve findbugs output
* improve code
2010-02-05 jcb
* remove useless files
* rename & adapt Tom plugins
* update config/Tom.xml
2010-02-04 tavares
* fix/debug new typer
* improve new typer
2010-01-27 jcb
* add a multithread ant configuration file (buildMT.xml)
2010-01-27 tavares
* Add some pre-processing in Desugarer.t
* Type untyped terms in SymbolTable.
2010-01-26 tavares
* Typing is OK (but Desugarer needs to be fixed)
2010-01-25 tonio
* improve error reporting
2010-01-25 tavares
* improve new typer (fix variables replacement)
2010-01-25 pem
* parallelize the generation of files only
2010-01-23 tonio
* enable findbugs to work
* improve code
* simplify Gom starter
2010-01-22 tonio
* improve code
2010-01-22 pem
* start parallelizing gom
2010-01-22 jcb
* replace System.in by tmp files in Gom
2010-01-19 tavares
* improve new typer (fix errors and congruence strategies)
2010-01-19 jcb
* add new typer plugin
2010-01-18 tavares
* fix errors
2010-01-12 pem
* improve and fix logo
* improve compiler
2010-01-11 jcb
* improve code (minor modifications)
2010-01-09 tonio
* fix build of src by stable
2010-01-08 jcb
* bootstrap with Gom multithread option activated (to be able to use Tom
multithread multithread option)
* activate both Gom and Tom multithread option
2009-12-30 tonio
* fix PR #9337: add a nostatic attribute to the tom ant task
* improve code
2009-12-16 tavares
* solve constraints in new typer
2009-12-15 jcb
* improve new typer
2009-12-11 tonio
* improve code (factorisation)
2009-12-09 jcb
* update applications/tlog
2009-12-07 tavares
* start type inference
2009-12-03 jcb
* improve code
2009-12-03 tonio
* remove dead code
* improve code
2009-12-03 jcb
* fix few errors
2009-11-30 tavares
* Start new typer
2009-11-27 tavares
* bugfix (wrong condition in SymbolTable for C code)
2009-11-25 tonio
* remove the "production rule" syntax support for gom, and the sorts section
2009-11-11 tonio
* bootstrap
* tom src adapted to use the new gomantlradaptor
2009-10-31 tonio
* gomantlradapter now generates a .tokens file instead of a TokenList.txt
It is now possible to avoid using tom only to include the tokens.