|
2 | 2 | Baseline of cpps |
3 | 3 | " |
4 | 4 | Class { |
5 | | - #name : #BaselineOfFamixCpp, |
6 | | - #superclass : #BaselineOf, |
7 | | - #category : #BaselineOfFamixCpp |
| 5 | + #name : 'BaselineOfFamixCpp', |
| 6 | + #superclass : 'BaselineOf', |
| 7 | + #category : 'BaselineOfFamixCpp', |
| 8 | + #package : 'BaselineOfFamixCpp' |
8 | 9 | } |
9 | 10 |
|
10 | | -{ #category : #baselines } |
| 11 | +{ #category : 'baselines' } |
11 | 12 | BaselineOfFamixCpp >> baseline: spec [ |
12 | 13 |
|
13 | 14 | <baseline> |
14 | 15 | spec for: #common do: [ |
15 | | - self petitParser2: spec. |
16 | | - self xmlParserHtml: spec. |
| 16 | + self petitParser2: spec. |
| 17 | + self xmlParserHtml: spec. |
17 | 18 |
|
18 | | - spec |
19 | | - package: 'Famix-CPreproc-Generator'; |
20 | | - package: 'Famix-CPreproc-Entities'; |
21 | | - |
22 | | - package: 'Famix-C-Generator'; |
23 | | - package: 'Famix-C-Entities' |
24 | | - with: [ spec requires: #( 'Famix-CPreproc-Entities' ) ]; |
25 | | - |
26 | | - package: 'Famix-Cpp-Generator'; |
27 | | - package: 'Famix-Cpp-Entities' |
28 | | - with: [ spec requires: #( 'Famix-CPreproc-Entities' 'Famix-C-Entities' ) ]; |
29 | | - package: 'Famix-Cpp-Entities-Tests' |
30 | | - with: [ spec requires: #( 'Famix-Cpp-Entities' ) ]; |
31 | | - |
32 | | - package: 'Famix-Cpp-Parser' |
33 | | - with: [ spec requires: #( 'PetitParser2Core' ) ]; |
34 | | - package: 'Famix-Cpp-Parser-Tests' |
35 | | - with: [ spec requires: #( 'Famix-Cpp-Parser' ) ]; |
36 | | - |
37 | | - package: 'Famix-CPreproc-Importer' |
38 | | - with: [ spec requires: #( 'Famix-CPreproc-Entities' XMLParserHTML ) ]; |
39 | | - package: 'Famix-CPreproc-Importer-Tests' |
40 | | - with: [ spec requires: #( 'Famix-CPreproc-Importer' ) ] ] |
| 19 | + spec |
| 20 | + package: 'Famix-Preproc-Generator'; |
| 21 | + package: 'Famix-Preproc-Traits'; |
| 22 | + package: 'Famix-C-Generator'; |
| 23 | + package: 'Famix-C-Entities' with: [ spec requires: #( 'Famix-Preproc-Traits' ) ]; |
| 24 | + package: 'Famix-Cpp-Generator'; |
| 25 | + package: 'Famix-Cpp-Entities' with: [ spec requires: #( 'Famix-C-Entities' ) ]; |
| 26 | + package: 'Famix-Cpp-Entities-Tests' with: [ spec requires: #( 'Famix-Cpp-Entities' ) ]; |
| 27 | + package: 'Famix-Cpp-Parser' with: [ spec requires: #( 'PetitParser2Core' ) ]; |
| 28 | + package: 'Famix-Cpp-Parser-Tests' with: [ spec requires: #( 'Famix-Cpp-Parser' ) ]; |
| 29 | + package: 'Famix-CPreproc-Generator'; |
| 30 | + package: 'Famix-CPreproc-Entities'; |
| 31 | + package: 'Famix-CPreproc-Importer' with: [ spec requires: #( 'Famix-CPreproc-Entities' XMLParserHTML ) ]; |
| 32 | + package: 'Famix-CPreproc-Importer-Tests' with: [ spec requires: #( 'Famix-CPreproc-Importer' ) ]. |
| 33 | + |
| 34 | + spec |
| 35 | + group: 'Preprocessing' with: #( 'Famix-Preproc-Generator' 'Famix-Preproc-Traits' ); |
| 36 | + group: 'OldPreprocessing' with: #( 'Famix-CPreproc-Generator' 'Famix-CPreproc-Entities' 'Famix-CPreproc-Importer' 'Famix-CPreproc-Importer-Tests' ); |
| 37 | + group: 'C' with: #( 'Famix-C-Generator' 'Famix-C-Entities' ); |
| 38 | + group: 'Cpp' with: #( 'Famix-Cpp-Generator' 'Famix-Cpp-Entities' 'Famix-Cpp-Entities-Tests' 'Famix-Cpp-Parser' 'Famix-Cpp-Parser-Tests' ); |
| 39 | + group: 'All' with: #( 'Preprocessing' 'C' 'Cpp' 'OldPreprocessing' ); |
| 40 | + group: 'default' with: #( 'Preprocessing' 'C' 'Cpp' ) ] |
41 | 41 | ] |
42 | 42 |
|
43 | | -{ #category : #dependencies } |
| 43 | +{ #category : 'dependencies' } |
44 | 44 | BaselineOfFamixCpp >> petitParser2: spec [ |
45 | 45 |
|
46 | 46 | spec |
47 | 47 | baseline: 'PetitParser2Core' |
48 | 48 | with: [ spec repository: 'github://kursjan/petitparser2' ] |
49 | 49 | ] |
50 | 50 |
|
51 | | -{ #category : #dependencies } |
| 51 | +{ #category : 'dependencies' } |
52 | 52 | BaselineOfFamixCpp >> xmlParserHtml: spec [ |
53 | 53 |
|
54 | 54 | spec baseline: 'XMLParserHTML' with: [ |
|
0 commit comments