Skip to content

Commit

Permalink
Another s/Object/Mu/.
Browse files Browse the repository at this point in the history
  • Loading branch information
jnthn committed Jan 11, 2010
1 parent f9eb8e2 commit f2d5c76
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/builtins/Mu.pir
Expand Up @@ -385,7 +385,7 @@ in the future.)
=cut
.sub '!STORE' :method :subid('Object::!STORE')
.sub '!STORE' :method :subid('Mu::!STORE')
.param pmc source
# Get hold of the source object to assign.
Expand Down
2 changes: 1 addition & 1 deletion src/builtins/Proxy.pir
Expand Up @@ -53,7 +53,7 @@ container.
base[key] = self

# and complete the STORE on self
.const 'Sub' $P0 = 'Object::!STORE'
.const 'Sub' $P0 = 'Mu::!STORE'
.tailcall self.$P0(source)
.end

Expand Down
2 changes: 1 addition & 1 deletion src/builtins/assign.pir
Expand Up @@ -22,7 +22,7 @@ src/builtins/assign.pir - assignment operations
unless $I0 goto obj_store
.tailcall cont.'!STORE'(source)
obj_store:
.const 'Sub' $P0 = 'Object::!STORE'
.const 'Sub' $P0 = 'Mu::!STORE'
.tailcall cont.$P0(source)
.end

Expand Down

0 comments on commit f2d5c76

Please sign in to comment.