Skip to content

bug: generating structs: fields with commas are ignored #86

@empijei

Description

@empijei

input:

type Foo struct {
  Bar, OhNo int
}

output:

export interface Info {
  Bar: number /* int */;
}

expected output:

export interface Info {
  Bar: number /* int */;
  OhNo: number /* int */;
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions