mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-10-02 06:41:48 +00:00
Merge #10251
10251: Fix typescript syntax errors r=lnicola a=Wilfred Remove unwanted `:` and fix the naming of the boolean type. Co-authored-by: Wilfred Hughes <me@wilfred.me.uk>
This commit is contained in:
commit
86943b0cb0
1 changed files with 2 additions and 2 deletions
|
@ -585,10 +585,10 @@ interface Crate {
|
||||||
target?: string;
|
target?: string;
|
||||||
/// Environment variables, used for
|
/// Environment variables, used for
|
||||||
/// the `env!` macro
|
/// the `env!` macro
|
||||||
env: : { [key: string]: string; },
|
env: { [key: string]: string; },
|
||||||
|
|
||||||
/// Whether the crate is a proc-macro crate.
|
/// Whether the crate is a proc-macro crate.
|
||||||
is_proc_macro: bool;
|
is_proc_macro: boolean;
|
||||||
/// For proc-macro crates, path to compiled
|
/// For proc-macro crates, path to compiled
|
||||||
/// proc-macro (.so file).
|
/// proc-macro (.so file).
|
||||||
proc_macro_dylib_path?: string;
|
proc_macro_dylib_path?: string;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue