mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
b718e6ff53
This commit upgrades: deno_lint 0.1.20 dprint-plugin-typescript 0.25.0 swc_ecmascript 0.1.0 SWC is no longer reexported from dprint nor deno_lint.
39 lines
1.1 KiB
Rust
39 lines
1.1 KiB
Rust
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
|
use serde::Serialize;
|
|
|
|
use super::ts_type::ts_type_ann_to_def;
|
|
use super::ts_type::TsTypeDef;
|
|
|
|
#[derive(Debug, Serialize, Clone)]
|
|
#[serde(rename_all = "camelCase")]
|
|
pub struct VariableDef {
|
|
pub ts_type: Option<TsTypeDef>,
|
|
pub kind: swc_ecmascript::ast::VarDeclKind,
|
|
}
|
|
|
|
// TODO: change this function to return Vec<(String, VariableDef)> as single
|
|
// var declaration can have multiple declarators
|
|
pub fn get_doc_for_var_decl(
|
|
var_decl: &swc_ecmascript::ast::VarDecl,
|
|
) -> (String, VariableDef) {
|
|
assert!(!var_decl.decls.is_empty());
|
|
let var_declarator = var_decl.decls.get(0).unwrap();
|
|
let var_name = match &var_declarator.name {
|
|
swc_ecmascript::ast::Pat::Ident(ident) => ident.sym.to_string(),
|
|
_ => "<TODO>".to_string(),
|
|
};
|
|
|
|
let maybe_ts_type = match &var_declarator.name {
|
|
swc_ecmascript::ast::Pat::Ident(ident) => {
|
|
ident.type_ann.as_ref().map(|rt| ts_type_ann_to_def(rt))
|
|
}
|
|
_ => None,
|
|
};
|
|
|
|
let variable_def = VariableDef {
|
|
ts_type: maybe_ts_type,
|
|
kind: var_decl.kind,
|
|
};
|
|
|
|
(var_name, variable_def)
|
|
}
|