Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

recast parse typescript Error #1258

Open
yumo-mt opened this issue Dec 19, 2022 · 2 comments
Open

recast parse typescript Error #1258

yumo-mt opened this issue Dec 19, 2022 · 2 comments

Comments

@yumo-mt
Copy link

yumo-mt commented Dec 19, 2022

//  code.tsx
import React, { useState, useEffect } from 'react'

const Home = () => {
  const [modal2Value, setModal2Value] = useState('abc')
  const selectedData: [
    { label: string; value: string | number },
    { label: string; value: string | number },
  ] = [
    { label: 'xx', value: 123 },
    { label: 'zz', value: '234' },
  ]
  useEffect(() => {
    setModal2Value(selectedData[0].value as string) // this code throw error
  }, [])
  return <h1>{modal2Value}</h1>
}

export default Home
// index.ts
const recast = require('recast');
const fs = require('fs');
const mCode = fs.readFileSync('./code.tsx',{encoding:'utf-8'});

const tsAst = recast.parse(mCode, {
  parser: require("recast/parsers/typescript")
});
console.log(tsAst)

which should i use parse ? thanks

@phitattoo
Copy link

```tsx
//  code.tsx
import React, { useState, useEffect } from 'react'

const Home = () => {
  const [modal2Value, setModal2Value] = useState('abc')
  const selectedData: [
    { label: string; value: string | number },
    { label: string; value: string | number },
  ] = [
    { label: 'xx', value: 123 },
    { label: 'zz', value: '234' },
  ]
  useEffect(() => {
    setModal2Value(selectedData[0].value as string) // this code throw error
  }, [])
  return <h1>{modal2Value}</h1>
}

export default Home
// index.ts
const recast = require('recast');
const fs = require('fs');
const mCode = fs.readFileSync('./code.tsx',{encoding:'utf-8'});

const tsAst = recast.parse(mCode, {
  parser: require("recast/parsers/typescript")
});
console.log(tsAst)

ฉันควรใช้การแยกวิเคราะห์แบบใด ? ขอบคุณ

@phitattoo phitattoo mentioned this issue Dec 19, 2022
@jonz94
Copy link

jonz94 commented Jan 10, 2023

Hi, you can try the babel-ts parser.

Example:

const recast = require('recast');
const fs = require('fs');
const mCode = fs.readFileSync('./code.tsx', { encoding: 'utf-8' });

const tsAst = recast.parse(mCode, {
  parser: require('recast/parsers/babel-ts'),
});

console.log(tsAst);

PS. you will also need to install @babel/parser package first.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants