Git Product home page Git Product logo

Comments (6)

GianlucaGuarini avatar GianlucaGuarini commented on June 13, 2024

@tayler1 can you post the tag code where the error gets thrown please? Probably you simply forgot to install babel sudo npm install [email protected] -g

from cli.

tayler1 avatar tayler1 commented on June 13, 2024

I got babel installed and it throws syntax error while tag processing (as shown above).
One tag in tags folder:

$ cat tags/fn.tag
<fn>
  <span></span>


  set(v) {
    this.name = v
  }
</fn>

from cli.

GianlucaGuarini avatar GianlucaGuarini commented on June 13, 2024

closing this issue in favor of this we have already answered ;)

from cli.

tayler1 avatar tayler1 commented on June 13, 2024

I dont understand how this is related to 55
This issue is not about es6 or method definitions or any kind of stuff.

Better than previous but still unable to print filename.

$ riot tags --type coffee
[stdin]:4:5: error: unexpected this
    this.name = v
    ^^^^

Stuck... Deprecated octal what? where?

$ riot tags --type livescript
SyntaxError: deprecated octal literal 01 on line 1

L2

$ riot tags --type typescript
Error: L2: ';' expected.
L4: Declaration or statement expected.

Errors must be descriptive.
Why I need (3:9) if original file doesn't contains any errors on line 3?

from cli.

GianlucaGuarini avatar GianlucaGuarini commented on June 13, 2024

I dont understand how this is related to 55

You are trying to pass invalid code to babel and/or typescript, either you use the riot parser or you use compliant code for your custom parsers babel (es6 javascript), typescript, coffeescript ..

<fn>
  <span></span>

<script>
// this is not valid js, neither typescript and neither coffeescript
// this will be only transformed to valid javascript in case you will use the default riot parsers
// for babel use this.set = () => {  }
  set(v) { 
    this.name = v
  }
</script>
</fn>

These errors come from typescript and babel itself, it's not riot throwing them. But I will reopen this issue trying to see if I can get better output.

from cli.

reverie avatar reverie commented on June 13, 2024

I'm running into this with typescript as well. What's worse is that the errors for different tags all run together, and it's impossible to tell what's what.

L5: ';' expected.
L0: Subsequent variable declarations must have the same type.  Variable 'self' must be of type 'Window', but here has type 'any'.
L1: Cannot find name '$'.
L1: Property 'q' does not exist on type 'Window'.
L2: Cannot find name 'doSearch'.
L3: Property 'trigger' does not exist on type 'Window'.
L8: Property 'doSearch' does not exist on type 'Window'.

from cli.

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.