We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ac4f43 commit 8f72842Copy full SHA for 8f72842
core/src/avm2/globals/flash/net/LocalConnection.as
@@ -0,0 +1,9 @@
1
+package flash.net {
2
+ import flash.events.EventDispatcher;
3
+ public class LocalConnection extends EventDispatcher {
4
+ public function get domain():String {
5
+ // FIXME - implement this
6
+ return "localhost";
7
+ }
8
9
+}
core/src/avm2/globals/globals.as
@@ -156,6 +156,7 @@ include "flash/media/VideoStatus.as"
156
157
include "flash/net/IDynamicPropertyOutput.as"
158
include "flash/net/IDynamicPropertyWriter.as"
159
+include "flash/net/LocalConnection.as"
160
include "flash/net/NetGroupReceiveMode.as"
161
include "flash/net/NetGroupReplicationStrategy.as"
162
include "flash/net/NetGroupSendMode.as"
0 commit comments