Giter Site home page Giter Site logo

Comments (11)

derekcicerone-zz avatar derekcicerone-zz commented on June 9, 2024

Got an example of code that reproduces the issue or a stack trace from the error log I could check out?

from eclipse-typescript.

gaydenko avatar gaydenko commented on June 9, 2024

Say, on line (code example is below from the TS site)

document.body.innerHTML = greeter(user);

and cursor at the end of the line hitting Enter does nothing. Linux running last 4.3.1RC Eclipse.

Another problem - building does nothing also.

//----------------------------------
class Student {
fullname : string;
constructor(public firstname, public middleinitial, public lastname) {
this.fullname = firstname + " " + middleinitial + " " + lastname;
}
}

interface Person {
firstname: string;
lastname: string;
}

function greeter(person : Person) {
return "Hello, " + person.firstname + " " + person.lastname;
}

var user = new Student("Jane", "M.", "User");

document.body.innerHTML = greeter(user);

from eclipse-typescript.

derekcicerone-zz avatar derekcicerone-zz commented on June 9, 2024

Got it - thanks for the repro. A new version should be available with the fix within the next 5-10 minutes.

The builder is disabled by default. You need to enable it by following the instructions on the homepage.

from eclipse-typescript.

gaydenko avatar gaydenko commented on June 9, 2024

I have enabled the builder and have verified last one is present in the project builder list. tsc command does work, so environment is OK.

Thanks for the fixing.

from eclipse-typescript.

derekcicerone-zz avatar derekcicerone-zz commented on June 9, 2024

ok, wanna open a separate bug for the builder issue? you'll want to check the error log for exceptions.

from eclipse-typescript.

gaydenko avatar gaydenko commented on June 9, 2024

Done, #61

from eclipse-typescript.

mkotsbak avatar mkotsbak commented on June 9, 2024

My code was:

class Greeter {
constructor(public greeting: string) { }
greet() {

    return "<h1>" + this.greeting + "</h1>";
}

};var greeter = new Greeter("uo"); greeter.greeting = "hc"; greeter.greet();

from eclipse-typescript.

derekcicerone-zz avatar derekcicerone-zz commented on June 9, 2024

Is this still reproducing with the latest build? (it came out within the last hour or so)

from eclipse-typescript.

gaydenko avatar gaydenko commented on June 9, 2024

For me the issue is fixed.

from eclipse-typescript.

mkotsbak avatar mkotsbak commented on June 9, 2024

Fixed for me too. Thanks for a quick fix and release! :)

from eclipse-typescript.

derekcicerone-zz avatar derekcicerone-zz commented on June 9, 2024

Cool, thanks for verifying the fix.

from eclipse-typescript.

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.