avm2: Fix stub type for Responder

This commit is contained in:
Lord-McSweeney 2023-03-13 22:01:58 -07:00 committed by Nathan Adams
parent 74d424e82f
commit a00af10182
1 changed files with 3 additions and 3 deletions

View File

@ -1,9 +1,9 @@
package flash.net { package flash.net {
import __ruffle__.stub_method; import __ruffle__.stub_constructor;
public class Responder { public class Responder {
public function Responder(result:Function, status:Function = null) { public function Responder(result:Function, status:Function = null) {
stub_method("flash.net.Responder", "constructor"); stub_constructor("flash.net.Responder");
} }
} }
} }