GithubHelp home page GithubHelp logo

Comments (4)

j4m3z0r avatar j4m3z0r commented on June 9, 2024

Actually, looking more closely, LeMP reports "Syntax error in argument list" when the i is included in the input, so I presume that's why it is being omitted from the output. However I don't understand why it's considered invalid input. Will see if I can get the same effect with some variation of replace / replacePP.

from ecsharp.

j4m3z0r avatar j4m3z0r commented on June 9, 2024

Ok, this works:

define TypeForArg($T1) {
    static if($T1 `code==` Int) int;
    else $T1;
}
replacePP(ArgType => TypeForArg(Int)) {
    public static void F(ArgType i);
}

That's an ok workaround for me for the time being, so this is lower priority. It would be good to understand if this is intended behavior or not though.

from ecsharp.

qwertie avatar qwertie commented on June 9, 2024

That's intended behavior. The entire file is parsed before the macro processor starts, so the input syntax must be valid EC# and an expression like x(y) z is not a valid expression.

However there is a macro designed for this kind of situation. An expression of the form $(Type) x is treated as a variable declaration; with that in mind, I made a "no-op" macro used like this: $(out expr). It replaces $(out expr) with expr, so instead of

public static void F(TypeForArg(Int) i);

you can write

public static void F($(out TypeForArg(Int)) i);

You can use this macro in other syntactically restricted locations too, such as method names and return types.

from ecsharp.

j4m3z0r avatar j4m3z0r commented on June 9, 2024

Ok, got it. I keep having this mental disconnect with the idea that the input file needs to be parseable as EC#. Since it's a pass that occurs before the C# compiler I think I assume that it works like C++'s preprocessor, which it doesn't.

Thanks for the helpful answer.

from ecsharp.

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.