Coder Social home page Coder Social logo

Comments (2)

tronical avatar tronical commented on July 29, 2024

Wow, this is unexpected. Good that you found a workaround - this seems like a bug to me.

from slint.

ogoffart avatar ogoffart commented on July 29, 2024

Thanks for filling a bug.

Here is a smaller testcase:

export component Btn {
  in-out property <[int]> model;
  width: 30px;
  height: 30px;
  Rectangle {
    background: red;
  }
  TouchArea {
    clicked => {
      model[0] += 1;
    }
  }
}

export component MainWindow inherits Window {
    preferred-height: 500px;
    preferred-width: 500px;
    //in-out     //changing the property to in-out fixes it in the viewer
    property <[int]> model: [42];

    // adding a change in the same component fixes the problem
    // TouchArea {  enabled: false; clicked => { model[0] += 10; }  }

    Btn{ model: model; }
    Text { text: model[0]; }
}

In that testcase, clicking on the red rectangle doesn't increment the text value.
That's because the const propagation phase thinks this is a const model as it doesn't "see" the change.
Changing the property to be in fixes it on the viewer but not on the LSP or slintpad because they add an extra layer so the property is still considered constant.
Adding a setter somewhere does workaround the problem though, as then the compiler sees it changes.

The problem is that the const propagation think that the model is const because nothing gets assigned to it. But this analysis is incorrect for model that are assigned to other property and then get modified trough it.

from slint.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.