Peefy

Results 48 issues of Peefy

The KCL language is currently in a stage of rapid development. Therefore, in the future, KCL will continue to iteratively evolve around the goals of stability, ease of use, and...

documentation

## Introduction KCL provides the schema settings meta attribute for planning YAML. In addition, you can also write KCL code to customize the way of outputting YAML, so the settings...

refactor

## Enhancement ### Semantic * The visibility/reference of a Mixin to its host variables can only be achieved through the Protocol (similar to the interface for property access). When the...

refactor
resolver

## Bug Report Please answer these questions before submitting your issue. Thanks! ### 1. Minimal reproduce step (Required) The kcl code is ```kcl a: str ``` ### 2. What did...

bug
parser

## Enhancement In KCL, the description of the `|=` operator has been removed from the KCL documentation. The corresponding features and test cases need to be removed inside the compiler.

semantic
runtime

## Enhancement `kusionstack/kclvm-builder` docker image is missing python pip and llvm lld components.

docker

## Enhancement The current KCL repository has initially established simple development documents, ISSUE and PR templates, etc. However, there is a lack of detailed developer manuals to help all developers...

documentation
enhancement
help wanted
long-term

## Enhancement In Konfig, we have code as follows: ```kcl strategy = "1

lang-design
semantic

## Enhancement * KCL Code Sample ``` schema Data: id?: int schema Config: datas: [Data] config = Config { datas: [{id = "1"}] } ``` The status is that this...

semantic
type-system

## Enhancement The kcl code ```kcl my_list = ['0', '1'] test = "0{0[0]}, 1{0[1]}".format(my_list) # '00, 11' ``` The YAML output ```yaml my_list: - '0' - '1' test: 00, 11...

stdlib
runtime