2 # Copyright (C) 2008-2009, Parrot Foundation.
9 use Parrot::Test tests => 6;
11 pirc_2_pasm_is(<<'CODE', <<'OUTPUT', "a local, a reg and an if-stat");
26 pirc_2_pasm_is(<<'CODE', <<'OUTPUT', "tale of a local, a reg and an unless-stat");
31 unless i == $I0 goto ok
42 pirc_2_pasm_is(<<'CODE', <<'OUTPUT', "comparison, if, unless");
73 pirc_2_pasm_is(<<'CODE', <<'OUTPUT', "indexing an array");
76 p = new "ResizableIntegerArray"
90 pirc_2_pasm_is(<<'CODE', <<'OUTPUT', "indexing a hash with a string constant");
106 pirc_2_pasm_is(<<'CODE', <<'OUTPUT', "indexing a hash with a string register");
114 # and combine indexing with string constant and register
129 # cperl-indent-level: 4
132 # vim: expandtab shiftwidth=4: