mirror of
https://gitlab.gnome.org/jwestman/blueprint-compiler.git
synced 2025-05-05 16:09:07 -04:00
parent
87a8ae96d8
commit
55b6cac27d
42 changed files with 111 additions and 109 deletions
|
@ -18,35 +18,36 @@
|
|||
# SPDX-License-Identifier: LGPL-3.0-or-later
|
||||
|
||||
|
||||
from .. import decompiler as decompile
|
||||
from .. import gir
|
||||
from ..ast_utils import AstNode, context, docs, validate
|
||||
from ..ast_utils import AstNode, validate, docs, context
|
||||
from ..errors import (
|
||||
CompileError,
|
||||
MultipleErrors,
|
||||
UpgradeWarning,
|
||||
CompileWarning,
|
||||
CodeAction,
|
||||
)
|
||||
from ..completions_utils import *
|
||||
from .. import decompiler as decompile
|
||||
from ..decompiler import (
|
||||
DecompileCtx,
|
||||
decompile_translatable,
|
||||
decompiler,
|
||||
escape_quote,
|
||||
truthy,
|
||||
)
|
||||
from ..errors import (
|
||||
CodeAction,
|
||||
CompileError,
|
||||
CompileWarning,
|
||||
MultipleErrors,
|
||||
UpgradeWarning,
|
||||
decompile_translatable,
|
||||
)
|
||||
from ..gir import (
|
||||
StringType,
|
||||
BoolType,
|
||||
Enumeration,
|
||||
ExternType,
|
||||
IntType,
|
||||
FloatType,
|
||||
GirType,
|
||||
IntType,
|
||||
StringType,
|
||||
Enumeration,
|
||||
ExternType,
|
||||
)
|
||||
from ..lsp_utils import Completion, CompletionItemKind, SemanticToken, SemanticTokenType
|
||||
from ..parse_tree import *
|
||||
|
||||
|
||||
OBJECT_CONTENT_HOOKS = AnyOf()
|
||||
LITERAL = AnyOf()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue