Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Error isn't captured by Vaxe #91

Open
fullofcaffeine opened this issue Mar 1, 2016 · 0 comments
Open

Error isn't captured by Vaxe #91

fullofcaffeine opened this issue Mar 1, 2016 · 0 comments

Comments

@fullofcaffeine
Copy link

I have the following class (it uses frabbits angular.haxe, it's an exercise in converting the TodoMVC to angular.haxe):

package;

import angular.*;
import js.node.http.*;
import fullofcaffeine.todomvc.controllers.*;

class Config {
  public var appName = 'TodoMVC';
  public function new() {}
}

class App {
 static var app;

  static public function main() {
    app = Angular.module('TodoMVC')
                 .factory(Config.new)
                 .controller("TodoController", TodoController);


  }
}

When I save, no errors ares shown in the quickfix window, but when I run :make, it shows the following:

[1]  + 13379 continued  mvim -v .

src/haxe/App.hx:16: lines 16-18 : f must be a function returning a type
src/haxe/App.hx:16: lines 16-18 : f must be a function returning a type

Press ENTER or type command to continue

For other kind of errors, it does show in the quickfix window: https://www.dropbox.com/s/r6m2xe67r9vzfpi/Screenshot%202016-03-01%2012.22.15.png?dl=0

Any ideas why the previous error didn't get caught by Vaxe?

@fullofcaffeine fullofcaffeine changed the title Error doesn't get captured by Vaxe Error isn't captured by Vaxe Mar 1, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant