Skip to content

Commit

Permalink
Add REPR IDs to static REPR struct
Browse files Browse the repository at this point in the history
  • Loading branch information
gerdr committed Sep 14, 2013
1 parent 80db081 commit 5a448ee
Show file tree
Hide file tree
Showing 25 changed files with 25 additions and 25 deletions.
2 changes: 1 addition & 1 deletion src/6model/reprs/HashAttrStore.c
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,6 @@ static MVMREPROps this_repr = {
NULL, /* gc_free_repr_data */
compose,
"HashAttrStore", /* name */
0, /* ID */
MVM_REPR_ID_HashAttrStore,
0, /* refs_frames */
};
2 changes: 1 addition & 1 deletion src/6model/reprs/KnowHOWAttributeREPR.c
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,6 @@ static MVMREPROps this_repr = {
NULL, /* gc_free_repr_data */
compose,
"KnowHOWAttributeREPR", /* name */
0, /* ID */
MVM_REPR_ID_KnowHOWAttributeREPR,
0, /* refs_frames */
};
2 changes: 1 addition & 1 deletion src/6model/reprs/KnowHOWREPR.c
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,6 @@ static MVMREPROps this_repr = {
NULL, /* gc_free_repr_data */
compose,
"KnowHOWREPR", /* name */
0, /* ID */
MVM_REPR_ID_KnowHOWREPR,
0, /* refs_frames */
};
2 changes: 1 addition & 1 deletion src/6model/reprs/Lexotic.c
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,6 @@ static MVMREPROps this_repr = {
NULL, /* gc_free_repr_data */
compose,
"Lexotic", /* name */
0, /* ID */
MVM_REPR_ID_Lexotic,
1, /* refs_frames */
};
2 changes: 1 addition & 1 deletion src/6model/reprs/MVMArray.c
Original file line number Diff line number Diff line change
Expand Up @@ -837,6 +837,6 @@ static MVMREPROps this_repr = {
NULL, /* gc_free_repr_data */
compose,
"VMArray", /* name */
0, /* ID */
MVM_REPR_ID_MVMArray,
0, /* refs_frames */
};
2 changes: 1 addition & 1 deletion src/6model/reprs/MVMCFunction.c
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,6 @@ static MVMREPROps this_repr = {
NULL, /* gc_free_repr_data */
compose,
"MVMCFunction", /* name */
0, /* ID */
MVM_REPR_ID_MVMCFunction,
0, /* refs_frames */
};
2 changes: 1 addition & 1 deletion src/6model/reprs/MVMCallCapture.c
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,6 @@ static MVMREPROps this_repr = {
NULL, /* gc_free_repr_data */
compose,
"MVMCallCapture", /* name */
0, /* ID */
MVM_REPR_ID_MVMCallCapture,
1, /* refs_frames */
};
2 changes: 1 addition & 1 deletion src/6model/reprs/MVMCode.c
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,6 @@ static MVMREPROps this_repr = {
NULL, /* gc_free_repr_data */
compose,
"MVMCode", /* name */
0, /* ID */
MVM_REPR_ID_MVMCode,
1, /* refs_frames */
};
2 changes: 1 addition & 1 deletion src/6model/reprs/MVMCompUnit.c
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,6 @@ static MVMREPROps this_repr = {
NULL, /* gc_free_repr_data */
compose,
"MVMCompUnit", /* name */
0, /* ID */
MVM_REPR_ID_MVMCompUnit,
0, /* refs_frames */
};
2 changes: 1 addition & 1 deletion src/6model/reprs/MVMContext.c
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,6 @@ static MVMREPROps this_repr = {
NULL, /* gc_free_repr_data */
compose,
"MVMContext", /* name */
0, /* ID */
MVM_REPR_ID_MVMContext,
0, /* refs_frames */
};
2 changes: 1 addition & 1 deletion src/6model/reprs/MVMException.c
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,6 @@ static MVMREPROps this_repr = {
NULL, /* gc_free_repr_data */
compose,
"VMException", /* name */
0, /* ID */
MVM_REPR_ID_MVMException,
1, /* refs_frames */
};
2 changes: 1 addition & 1 deletion src/6model/reprs/MVMHash.c
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,6 @@ static MVMREPROps this_repr = {
NULL, /* gc_free_repr_data */
compose,
"VMHash", /* name */
0, /* ID */
MVM_REPR_ID_MVMHash,
0, /* refs_frames */
};
2 changes: 1 addition & 1 deletion src/6model/reprs/MVMIter.c
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ static MVMREPROps this_repr = {
NULL, /* gc_free_repr_data */
compose,
"VMIter", /* name */
0, /* ID */
MVM_REPR_ID_MVMIter,
0, /* refs_frames */
};

Expand Down
2 changes: 1 addition & 1 deletion src/6model/reprs/MVMOSHandle.c
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,6 @@ static MVMREPROps this_repr = {
NULL, /* gc_free_repr_data */
compose,
"MVMOSHandle", /* name */
0, /* ID */
MVM_REPR_ID_MVMOSHandle,
0, /* refs_frames */
};
2 changes: 1 addition & 1 deletion src/6model/reprs/MVMStaticFrame.c
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,6 @@ static MVMREPROps this_repr = {
NULL, /* gc_free_repr_data */
compose,
"MVMStaticFrame", /* name */
0, /* ID */
MVM_REPR_ID_MVMStaticFrame,
1, /* refs_frames */
};
2 changes: 1 addition & 1 deletion src/6model/reprs/MVMString.c
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,6 @@ static MVMREPROps this_repr = {
NULL, /* gc_free_repr_data */
compose,
"MVMString", /* name */
0, /* ID */
MVM_REPR_ID_MVMString,
0, /* refs_frames */
};
2 changes: 1 addition & 1 deletion src/6model/reprs/MVMThread.c
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,6 @@ static MVMREPROps this_repr = {
NULL, /* gc_free_repr_data */
compose,
"MVMThread", /* name */
0, /* ID */
MVM_REPR_ID_MVMThread,
0, /* refs_frames */
};
2 changes: 1 addition & 1 deletion src/6model/reprs/NFA.c
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ static MVMREPROps this_repr = {
NULL, /* gc_free_repr_data */
compose,
"NFA", /* name */
0, /* ID */
MVM_REPR_ID_NFA,
0, /* refs_frames */
};

Expand Down
2 changes: 1 addition & 1 deletion src/6model/reprs/P6bigint.c
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,6 @@ static MVMREPROps this_repr = {
NULL, /* gc_free_repr_data */
compose,
"P6bigint", /* name */
0, /* ID */
MVM_REPR_ID_P6bigint,
0, /* refs_frames */
};
2 changes: 1 addition & 1 deletion src/6model/reprs/P6int.c
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,6 @@ static MVMREPROps this_repr = {
NULL, /* gc_free_repr_data */
compose,
"P6int", /* name */
0, /* ID */
MVM_REPR_ID_P6int,
0, /* refs_frames */
};
2 changes: 1 addition & 1 deletion src/6model/reprs/P6num.c
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,6 @@ static MVMREPROps this_repr = {
NULL, /* gc_free_repr_data */
compose,
"P6num", /* name */
0, /* ID */
MVM_REPR_ID_P6num,
0, /* refs_frames */
};
2 changes: 1 addition & 1 deletion src/6model/reprs/P6opaque.c
Original file line number Diff line number Diff line change
Expand Up @@ -1243,6 +1243,6 @@ static MVMREPROps this_repr = {
gc_free_repr_data,
compose,
"P6opaque", /* name */
0, /* ID */
MVM_REPR_ID_P6opaque,
0, /* refs_frames */
};
2 changes: 1 addition & 1 deletion src/6model/reprs/P6str.c
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,6 @@ static MVMREPROps this_repr = {
NULL, /* gc_free_repr_data */
compose,
"P6str", /* name */
0, /* ID */
MVM_REPR_ID_P6str,
0, /* refs_frames */
};
2 changes: 1 addition & 1 deletion src/6model/reprs/SCRef.c
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,6 @@ static MVMREPROps this_repr = {
NULL, /* gc_free_repr_data */
compose,
"SCRef", /* name */
0, /* ID */
MVM_REPR_ID_SCRef,
0, /* refs_frames */
};
2 changes: 1 addition & 1 deletion src/6model/reprs/Uninstantiable.c
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,6 @@ static MVMREPROps this_repr = {
NULL, /* gc_free_repr_data */
compose,
"Uninstantiable", /* name */
0, /* ID */
MVM_REPR_ID_Uninstantiable,
0, /* refs_frames */
};

0 comments on commit 5a448ee

Please sign in to comment.