Displaying 1 result from an estimated 1 matches for "c_field1".
2020 Aug 14
2
Another possible tracing feature for TableGen
...or PrintRecords that restricts its printing to only the traced records.
Now it gets a bit more difficult.
===============================================
class P <int ID> {
int P_ID = ID;
string P_field = "P string here";
}
class C <string arg1> : P<-1970> {
int C_field1 = 1042;
string C_field2 = "C string";
int C_field3;
let C_field3 = !add(C_field1, 3);
string C_arg1 = arg1;
string C_to_let;
}
class D <list<int> list1, int rare = 0> {
list<int> D_list = list1;
int D_rare = rare;
int D_field1 = 10101;
int D_field2 = 1...