Exception: Dart2JsExceptions::PrepareInputException
- Inherits:
-
Dart2JsException
- Object
- Exception
- Dart2JsException
- Dart2JsExceptions::PrepareInputException
- Defined in:
- lib/dart2js_exceptions.rb
Instance Method Summary collapse
-
#initialize(compiler, reason) ⇒ PrepareInputException
constructor
A new instance of PrepareInputException.
- #message ⇒ Object
Constructor Details
#initialize(compiler, reason) ⇒ PrepareInputException
Returns a new instance of PrepareInputException.
20 21 22 23 |
# File 'lib/dart2js_exceptions.rb', line 20 def initialize(compiler, reason) super(compiler) @reason = reason end |
Instance Method Details
#message ⇒ Object
25 26 27 |
# File 'lib/dart2js_exceptions.rb', line 25 def "dart2js prepare_input failed\n in_file: #{@instance.in_file}\n input_path: #{@instance.input_path}\n reason: #{@reason}" end |