nowelium - 2008/03/13 01:53:21


作ってみた。
今年はioの布教活動をしていこう(遅
SiroKuro - 2008/04/04 21:16:52


お、おお、おおお
anatoo - 2008/04/25 22:21:08


過疎っぷりがヤバい
anatoo - 2008/04/26 22:14:58


javascriptでいうargument.calleeがどの辺にあるか誰か知りませんか。探してるが見つかんない
anatoo - 2008/04/27 15:12:42


arguments.calleeです。って誰もいないな
anatoo - 2008/04/29 17:51:02


call activatedこれで取得できますね
anatoo - 2008/05/02 00:46:34

nowelium - 2008/05/02 00:49:28

anatoo - 2008/05/24 20:59:35

anatoo - 2008/05/31 20:43:36


メソッド内でのcall target と selfって一緒なんですかね?
nowelium - 2008/06/10 01:27:35


メソッド内でのcall targetとselfは同じなよーな
Io> a := method(call target == self)
==> method(
call target == self
)
Io> a
==> true
というのも
Io> b := method(call target uniqueId println; self uniqueId println)
==> method(
call target uniqueId println; self uniqueId println
)
Io> b
2148144
2148144
==> 2148144
uniqueIdだけでみると同一
やっぱりmethodとかだと、selfは呼び出し元コンテキストじゃないってことですかねー
# この辺がjsのthisと違っててややこしい(small talk的には正しいかもだけど)
dreamygirl - 2008/11/09 23:11:26


hello
anybody here?