mirror of
https://gitlab.gnome.org/jwestman/blueprint-compiler.git
synced 2025-05-04 15:59:08 -04:00
language: Change extern type syntax
Use a '$' instead of a '.' to indicate a type provided in application code. The reason for the change is to have a consistent "extern" symbol that isn't widely used elsewhere and isn't ambiguous in expressions.
This commit is contained in:
parent
be284de879
commit
0b402db4d5
11 changed files with 41 additions and 13 deletions
|
@ -20,7 +20,13 @@
|
|||
|
||||
from .. import gir
|
||||
from ..ast_utils import AstNode, validate, docs
|
||||
from ..errors import CompileError, MultipleErrors
|
||||
from ..errors import (
|
||||
CompileError,
|
||||
MultipleErrors,
|
||||
UpgradeWarning,
|
||||
CompileWarning,
|
||||
CodeAction,
|
||||
)
|
||||
from ..completions_utils import *
|
||||
from .. import decompiler as decompile
|
||||
from ..decompiler import DecompileCtx, decompiler
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue