blob: be657c3900a65a759ae8c7666ca11078727243a5 [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 AudioElement createAudioElement([String src = null]) {
if (src == null) return JS('AudioElement', 'new Audio()');
return JS('AudioElement', 'new Audio(#)', src);
}
}