~ubuntu-branches/ubuntu/raring/parrot/raring-proposed

« back to all changes in this revision

Viewing changes to src/ops/object.ops

  • Committer: Bazaar Package Importer
  • Author(s): Allison Randal
  • Date: 2011-07-30 18:45:03 UTC
  • mfrom: (1.1.13 upstream)
  • Revision ID: james.westby@ubuntu.com-20110730184503-34d4mprtfx6pt5h3
Tags: 3.6.0-1
* New upstream release
* debian/watch:
  - Modified regular expression to capture numbered directory name
    (patch from Dominique Dumont).
* debian/rules:
  - Split build-arch and build-indep, resolving lintian warning.
  - Update path to pbc_disassemble for manpage generation (patch
    from Dominique Dumont).
* debian/patches:
  - Added patch 02_fix_perl_interpreter_path.patch, resolving
    lintian warnings.
* debian/control:
  - Added DM-Upload-Allowed field.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
2
 
3
 
 
4
3
object.ops
5
4
 
6
5
*/
107
106
    opcode_t * const next       = expr NEXT();
108
107
 
109
108
    PMC      * const method_pmc = VTABLE_find_method(interp, object, meth);
110
 
    opcode_t *dest              = NULL;
 
109
    opcode_t *dest;
111
110
    PMC      *       signature  = Parrot_pcc_get_signature(interp,
112
111
                                    CURRENT_CONTEXT(interp));
113
112