From 59aefc5bc227561ef55d238eec8bf31a114b5394 Mon Sep 17 00:00:00 2001 From: sergeych Date: Fri, 2 Jan 2026 16:10:05 +0100 Subject: [PATCH] fixed enum objects wrong package --- .../kotlin/net/sergeych/lyng/Compiler.kt | 1 - .../kotlin/net/sergeych/lyng/obj/ObjEnum.kt | 18 +++++++++++++++++- 2 files changed, 17 insertions(+), 2 deletions(-) diff --git a/lynglib/src/commonMain/kotlin/net/sergeych/lyng/Compiler.kt b/lynglib/src/commonMain/kotlin/net/sergeych/lyng/Compiler.kt index c4a53cb..77b5280 100644 --- a/lynglib/src/commonMain/kotlin/net/sergeych/lyng/Compiler.kt +++ b/lynglib/src/commonMain/kotlin/net/sergeych/lyng/Compiler.kt @@ -17,7 +17,6 @@ package net.sergeych.lyng -import ObjEnumClass import net.sergeych.lyng.Compiler.Companion.compile import net.sergeych.lyng.miniast.* import net.sergeych.lyng.obj.* diff --git a/lynglib/src/commonMain/kotlin/net/sergeych/lyng/obj/ObjEnum.kt b/lynglib/src/commonMain/kotlin/net/sergeych/lyng/obj/ObjEnum.kt index 2aed3d5..e48fbde 100644 --- a/lynglib/src/commonMain/kotlin/net/sergeych/lyng/obj/ObjEnum.kt +++ b/lynglib/src/commonMain/kotlin/net/sergeych/lyng/obj/ObjEnum.kt @@ -1,4 +1,21 @@ /* + * Copyright 2026 Sergey S. Chernov real.sergeych@gmail.com + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +package net.sergeych.lyng.obj/* * Copyright 2025 Sergey S. Chernov real.sergeych@gmail.com * * Licensed under the Apache License, Version 2.0 (the "License"); @@ -18,7 +35,6 @@ import kotlinx.serialization.json.JsonElement import kotlinx.serialization.json.JsonPrimitive import net.sergeych.lyng.Scope -import net.sergeych.lyng.obj.* import net.sergeych.lynon.LynonDecoder import net.sergeych.lynon.LynonEncoder import net.sergeych.lynon.LynonType