mirror of
https://gitlab.gnome.org/jwestman/blueprint-compiler.git
synced 2025-05-04 15:59:08 -04:00
types: Add UncheckedType
This allows us to remember information about an external type, such as its name, while still marking it as unchecked.
This commit is contained in:
parent
f7aa7d0be2
commit
2033bd9e16
7 changed files with 55 additions and 11 deletions
|
@ -24,7 +24,15 @@ from ..errors import CompileError, MultipleErrors
|
|||
from ..completions_utils import *
|
||||
from .. import decompiler as decompile
|
||||
from ..decompiler import DecompileCtx, decompiler
|
||||
from ..gir import StringType, BoolType, IntType, FloatType, GirType, Enumeration
|
||||
from ..gir import (
|
||||
StringType,
|
||||
BoolType,
|
||||
IntType,
|
||||
FloatType,
|
||||
GirType,
|
||||
Enumeration,
|
||||
UncheckedType,
|
||||
)
|
||||
from ..lsp_utils import Completion, CompletionItemKind, SemanticToken, SemanticTokenType
|
||||
from ..parse_tree import *
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue