blob: 157caae906f6180319191d7d8d1a82d0de80eb96 [file] [log] [blame]
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
class $FACTORYPROVIDER {
static SharedWorker createSharedWorker(String scriptURL, [String name])
native '''
if (name == null) return new SharedWorker(scriptURL);
return new SharedWorker(scriptURL, name);
''';
}