kcl-lang / kcl

KCL Programming Language (CNCF Sandbox Project). https://kcl-lang.io
https://kcl-lang.io
Apache License 2.0
1.41k stars 110 forks source link

[Bug] Wrong Definition and Completion items in the schema config for the left attribute and right value. #1446

Open Peefy opened 6 days ago

Peefy commented 6 days ago
schema Config:
    env: str
    name: str

env = "prod"

c = Config{
    env: env # Wrong definition for the right `env`
}

image