Code Monkey home page Code Monkey logo

Comments (5)

NeVeSpl avatar NeVeSpl commented on June 16, 2024

There was a breaking change, IAttributeArgument.Value is now of ITypedConstant or ITypedConstant[].

So, smth like that should work:

public static string ExtractTypescriptType(IAttribute attr)
{
    if (attr.Name == "TypescriptType")
    {
        var attrType = attr.Arguments.FirstOrDefault()?.Value as ITypedConstant;
        if (attrType != null) return attrType.Value as string;
    }

    return string.Empty;
}

from ntypewriter.

gregveres avatar gregveres commented on June 16, 2024

Yes, thanks. I just figured that out and changed my code to something very similar to this. I was about to post something similar.

from ntypewriter.

gregveres avatar gregveres commented on June 16, 2024

I seem to remember there was a way to do an equivalent of a console.log() in the scriban script, but I can't find any reference to it and I didn't leave myself a note in my code. Is there such a thing or am I dreaming?
Haivng fixed this issue, I am still running into a null reference in another script. I think another user created an issue for that one.

from ntypewriter.

NeVeSpl avatar NeVeSpl commented on June 16, 2024

Debug.WriteLine

Version 0.4.4.1 with fixed null reference problem is published, hopefully, there is not another one.

from ntypewriter.

gregveres avatar gregveres commented on June 16, 2024

closing since this is due toa breaking change that can be handled in my code.

from ntypewriter.

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.