[svn:parrot] r41557 - trunk/src/pmc
bacek at svn.parrot.org
bacek at svn.parrot.org
Tue Sep 29 13:29:08 UTC 2009
Author: bacek
Date: Tue Sep 29 13:29:06 2009
New Revision: 41557
URL: https://trac.parrot.org/parrot/changeset/41557
Log:
[core] Expose Context.results_signature into PIR.
Modified:
trunk/src/pmc/context.pmc
Modified: trunk/src/pmc/context.pmc
==============================================================================
--- trunk/src/pmc/context.pmc Tue Sep 29 13:02:53 2009 (r41556)
+++ trunk/src/pmc/context.pmc Tue Sep 29 13:29:06 2009 (r41557)
@@ -177,6 +177,8 @@
return ctx->current_namespace;
else if (Parrot_str_equal(INTERP, key, CONST_STRING(INTERP, "handlers")))
return ctx->handlers;
+ else if (Parrot_str_equal(INTERP, key, CONST_STRING(INTERP, "results_signature")))
+ return ctx->results_signature;
else if (Parrot_str_equal(INTERP, key, CONST_STRING(INTERP, "current_HLL")))
/* This function from src/hash.c. */
/* We probably have to move it to more suitable place */
More information about the parrot-commits
mailing list