After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 787134 - No symbol found in async method
No symbol found in async method
Status: RESOLVED DUPLICATE of bug 783928
Product: vala
Classification: Core
Component: Async
0.34.x
Other Linux
: Normal normal
: ---
Assigned To: Vala maintainers
Vala maintainers
Depends on:
Blocks:
 
 
Reported: 2017-09-01 16:11 UTC by Daniel Espinosa
Modified: 2017-10-07 10:21 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
Adding test for error reproduction (407 bytes, patch)
2017-09-01 17:35 UTC, Daniel Espinosa
none Details | Review

Description Daniel Espinosa 2017-09-01 16:11:22 UTC
When using this code:

public class App : GLib.Object {
  private double fraction = 1.0;
  public double get_value () { return fraccion; }
  public async void update () {
    try {
      yield do_stuff ();
      var lc = yield return_stuff ();
      for (int i = 0; i < lc.length; i++) {
        GLib.Idle.add (update.callback);
        yield;
        fraccion += 3.5/(lc.length)*i;
        yield update_calc ();
      }
      do_more_stuff.begin (()=>{
        message ("More stuff done");
      });
    } catch (GLib.Error e) {
      warning ("Error al conectar: "+e.message);
    }
    GLib.Idle.add (update.callback);
    yield;
  }
  public async void do_stuff () throws GLib.Error {
    message ("Doing");
  }
  public async void do_more_stuff () throws GLib.Error {
    message ("Doing More");
  }
  public async GLib.Queue<string> return_stuff () throws GLib.Error {
    return  new GLib.Queue<string> ();
  }
  public async void update_calc () throws GLib.Error {
    fraction += 1;
  }
  public int main () {
    var app = new App ();
    app.update.begin (()=>{
      message ("Done Update");
    });
    int p = 1;
    while (app.get_value () < 100 || p < 100000) { p++; }
  }
}

valac 0.36.4 and at least 0.37.91, fails to find  "lc" defined as:

var lc = yield return_stuff ();

in async update () method.
Comment 1 Daniel Espinosa 2017-09-01 16:12:30 UTC
Declaring explicitly "lc" variable's type, doesn't help either.
Comment 2 Daniel Espinosa 2017-09-01 16:22:46 UTC
The problem is reduced to:

public class App : GLib.Object {
  public static int main () {
    var i = 1.0;
    int k = 1;
    var f = 3.4/(i)*k;
    message ("%f".printf (f));
    return 0;
  }
}

Changing line:

var f = 3.4/(i)*k;

to:

var f = 3.4/i*k;

works!
Comment 3 Daniel Espinosa 2017-09-01 17:35:54 UTC
Created attachment 358956 [details] [review]
Adding test for error reproduction

No fix yet. But this add test cases failing on make check.
Comment 4 Al Thomas 2017-09-01 18:48:48 UTC
This might have something to do with https://git.gnome.org/browse/vala/commit/?id=f1ddd5a6d201ccb90563e4b46fe500b72841d6f1 or similar in the parser.
Comment 5 Rico Tzschichholz 2017-09-03 13:24:23 UTC
Don't add superfluous parens! :)

I see you point though.
Comment 6 Rico Tzschichholz 2017-10-07 10:21:01 UTC

*** This bug has been marked as a duplicate of bug 783928 ***