Dart2js class
Utility tasks for invoking dart2js.
Constructors
- Dart2js()
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Static Methods
-
compile(
File sourceFile, {Directory? outDir, File? outFile, bool minify = false, bool csp = false, bool enableExperimentalMirrors = false, String? categories, List< String> extraArgs = const []}) → void -
Invoke a dart2js compile with the given
sourceFile
as input. -
compileAsync(
File sourceFile, {Directory? outDir, File? outFile, bool minify = false, bool csp = false, bool enableExperimentalMirrors = false, String? categories, List< String> extraArgs = const []}) → Future -
Invoke a dart2js compile with the given
sourceFile
as input. -
version(
{bool quiet = false}) → String?