Giter Club home page Giter Club logo

Comments (3)

GoogleCodeExporter avatar GoogleCodeExporter commented on August 15, 2024
Apparat will not perform copy propagation when using TDSI. The local variables 
have to be created because the following is valid code:

function add(x: int): void {
 x += 1;
 return x;
}

var y: int = 0;
add(y)
trace(y)

If no extra variables would be created, the code would trace "1" but should 
trace "0". Therefore variables are created and an additional optimization phase 
would be required to get rid of them. That could and is already implemented in 
the TAAS code as a phase, but since there is no complete ABC frontend or ABC 
backend (and I am no longer interested in writing it) your best chance will be 
to use MacroExpansion instead since no additional variables are created.

Original comment by joaebert on 26 Mar 2012 at 1:42

  • Changed state: WontFix

from apparat.

GoogleCodeExporter avatar GoogleCodeExporter commented on August 15, 2024
Issue 62 has been merged into this issue.

Original comment by joaebert on 27 Mar 2012 at 6:21

from apparat.

GoogleCodeExporter avatar GoogleCodeExporter commented on August 15, 2024
Thanks.

I originally use Inlined because the documentation led me to believe that I 
absolutely  may not use return values with macros.
I thought I would try anyway and was surprised to see that it works just fine 
and does exactly what I want.

Original comment by [email protected] on 27 Mar 2012 at 8:04

from apparat.

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.