[svn:parrot] r48077 - branches/gsoc_instrument/src/dynpmc
khairul at svn.parrot.org
khairul at svn.parrot.org
Tue Jul 13 03:33:57 UTC 2010
Author: khairul
Date: Tue Jul 13 03:33:56 2010
New Revision: 48077
URL: https://trac.parrot.org/parrot/changeset/48077
Log:
Lowercased vtable groups.
Modified:
branches/gsoc_instrument/src/dynpmc/instrumentvtable.pmc
Modified: branches/gsoc_instrument/src/dynpmc/instrumentvtable.pmc
==============================================================================
--- branches/gsoc_instrument/src/dynpmc/instrumentvtable.pmc Tue Jul 13 03:32:11 2010 (r48076)
+++ branches/gsoc_instrument/src/dynpmc/instrumentvtable.pmc Tue Jul 13 03:33:56 2010 (r48077)
@@ -804,7 +804,7 @@
VTABLE_push_string(interp, temp,
CONST_STRING(interp, "exists_keyed_str"));
parrot_hash_put(interp, vtable_group_items,
- CONST_STRING(interp, "EXISTS"),
+ CONST_STRING(interp, "exists"),
temp);
temp = Parrot_pmc_new(interp, enum_class_ResizableStringArray);
@@ -885,7 +885,7 @@
VTABLE_push_string(interp, temp,
CONST_STRING(interp, "set_pointer_keyed_str"));
parrot_hash_put(interp, vtable_group_items,
- CONST_STRING(interp, "FETCH"),
+ CONST_STRING(interp, "fetch"),
temp);
temp = Parrot_pmc_new(interp, enum_class_ResizableStringArray);
@@ -910,7 +910,7 @@
VTABLE_push_string(interp, temp,
CONST_STRING(interp, "substr_str"));
parrot_hash_put(interp, vtable_group_items,
- CONST_STRING(interp, "STRING"),
+ CONST_STRING(interp, "string"),
temp);
temp = Parrot_pmc_new(interp, enum_class_ResizableStringArray);
@@ -991,7 +991,7 @@
VTABLE_push_string(interp, temp,
CONST_STRING(interp, "neg"));
parrot_hash_put(interp, vtable_group_items,
- CONST_STRING(interp, "MATH"),
+ CONST_STRING(interp, "math"),
temp);
temp = Parrot_pmc_new(interp, enum_class_ResizableStringArray);
@@ -1060,7 +1060,7 @@
VTABLE_push_string(interp, temp,
CONST_STRING(interp, "init_int"));
parrot_hash_put(interp, vtable_group_items,
- CONST_STRING(interp, "MAIN"),
+ CONST_STRING(interp, "main"),
temp);
temp = Parrot_pmc_new(interp, enum_class_ResizableStringArray);
@@ -1083,7 +1083,7 @@
VTABLE_push_string(interp, temp,
CONST_STRING(interp, "splice"));
parrot_hash_put(interp, vtable_group_items,
- CONST_STRING(interp, "FETCHSIZE"),
+ CONST_STRING(interp, "fetchsize"),
temp);
temp = Parrot_pmc_new(interp, enum_class_ResizableStringArray);
@@ -1112,7 +1112,7 @@
VTABLE_push_string(interp, temp,
CONST_STRING(interp, "logical_not"));
parrot_hash_put(interp, vtable_group_items,
- CONST_STRING(interp, "CMP"),
+ CONST_STRING(interp, "cmp"),
temp);
temp = Parrot_pmc_new(interp, enum_class_ResizableStringArray);
@@ -1212,7 +1212,7 @@
VTABLE_push_string(interp, temp,
CONST_STRING(interp, "find_method"));
parrot_hash_put(interp, vtable_group_items,
- CONST_STRING(interp, "CORE"),
+ CONST_STRING(interp, "core"),
temp);
/* END vtable mapping group items */
More information about the parrot-commits
mailing list