[svn:parrot] r43106 - branches/context_unify3/t/pmc
whiteknight at svn.parrot.org
whiteknight at svn.parrot.org
Wed Dec 16 14:31:56 UTC 2009
Author: whiteknight
Date: Wed Dec 16 14:31:55 2009
New Revision: 43106
URL: https://trac.parrot.org/parrot/changeset/43106
Log:
ParrotInterpreter[context] returns an object of type CallContext
Modified:
branches/context_unify3/t/pmc/parrotinterpreter.t
Modified: branches/context_unify3/t/pmc/parrotinterpreter.t
==============================================================================
--- branches/context_unify3/t/pmc/parrotinterpreter.t Wed Dec 16 14:27:55 2009 (r43105)
+++ branches/context_unify3/t/pmc/parrotinterpreter.t Wed Dec 16 14:31:55 2009 (r43106)
@@ -83,17 +83,17 @@
$P0 = interp['namespace';0]
$I0 = isa $P0, 'NameSpace'
ok($I0, 'Got ParrotInterp.namespace')
-
+
$P0 = interp['continuation';0]
$I0 = isa $P0, 'Continuation'
ok($I0, 'Got ParrotInterp.continuation')
-
+
$P0 = interp['annotations';1]
$S0 = $P0['foo']
is($S0, 'bar', 'Got ParrotInterp.annotations')
$P0 = interp['context';0]
- $I0 = isa $P0, 'Context'
+ $I0 = isa $P0, 'CallContext'
ok($I0, 'Got ParrotInterp.context')
# Add more tests for Context. E.g. it is correct Context by inspecting it.
More information about the parrot-commits
mailing list