Skip to content

No autocomplete on my objects #1040

@Lcfvs

Description

@Lcfvs

Hi,

Sorry for my too generic title but I think this issue can help to find interesting things to improve your incredible tool.

I made some tests on it, it works fine but not with the object created with my low-level component @etchedjs/etched (for sure, my lib is a few conceptual and complex but it's a valid JS).

Version: 0.24.1 (browser demo)

Reproducing steps

Create a etched.js file containing the @etchedjs/etched source

In the main script

import { etch, model } from './etched.js'

const entity = model(null, {
  set id (value) {}
})

const account = model(entity, {
  set name (value) {}
})

const jack = etch(account, {
  id: 123,
  name: 'Jack'
})

const renamed = etch(jack, {
  name: 'Jack-Renamed'
})

jack. // doesn't autocompletes anything

Hope it helps. :)

If you need more informations, just ask.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions