Sign in
mojo
/
mojo-tools
/
refs/heads/sky_sdk
/
.
/
sky
/
tests
/
modules
/
resources
/
with-dart-import.sky
blob: cea001fdf57d576026f05c7d4ff9d9978cd40937 [
file
] [
log
] [
blame
] [
edit
]
<script>
import
'dart-import.dart'
as base
;
// Use the dart import so it doesn't ignore it.
class
TestClass
extends base
.
BaseClass
{
}
bool didInit
=
false
;
void
_init
(
_
)
{
didInit
=
(
new
TestClass
()
!=
null
);
}
</script>