2020-02-18 11:35:10 -06:00
|
|
|
use hir::Semantics;
|
2020-03-03 11:54:39 -06:00
|
|
|
use ra_ide_db::{
|
2020-06-08 07:38:10 -05:00
|
|
|
defs::{classify_name, classify_name_ref, NameClass},
|
2020-03-03 11:54:39 -06:00
|
|
|
symbol_index, RootDatabase,
|
|
|
|
};
|
2019-01-08 13:33:36 -06:00
|
|
|
use ra_syntax::{
|
2020-02-22 09:57:29 -06:00
|
|
|
ast::{self},
|
2019-12-13 15:00:05 -06:00
|
|
|
match_ast, AstNode,
|
|
|
|
SyntaxKind::*,
|
2020-02-22 09:57:29 -06:00
|
|
|
SyntaxToken, TokenAtOffset,
|
2019-01-08 13:33:36 -06:00
|
|
|
};
|
|
|
|
|
2019-05-22 11:49:22 -05:00
|
|
|
use crate::{
|
2020-02-22 09:57:29 -06:00
|
|
|
display::{ToNav, TryToNav},
|
2019-07-04 15:05:17 -05:00
|
|
|
FilePosition, NavigationTarget, RangeInfo,
|
2019-05-22 11:49:22 -05:00
|
|
|
};
|
2019-01-08 13:33:36 -06:00
|
|
|
|
2020-05-31 02:45:41 -05:00
|
|
|
// Feature: Go to Definition
|
2020-05-30 18:54:54 -05:00
|
|
|
//
|
|
|
|
// Navigates to the definition of an identifier.
|
|
|
|
//
|
|
|
|
// |===
|
|
|
|
// | Editor | Shortcut
|
|
|
|
//
|
|
|
|
// | VS Code | kbd:[F12]
|
|
|
|
// |===
|
2019-01-08 16:38:51 -06:00
|
|
|
pub(crate) fn goto_definition(
|
2019-01-08 13:33:36 -06:00
|
|
|
db: &RootDatabase,
|
|
|
|
position: FilePosition,
|
2019-01-15 12:02:42 -06:00
|
|
|
) -> Option<RangeInfo<Vec<NavigationTarget>>> {
|
2020-02-18 11:35:10 -06:00
|
|
|
let sema = Semantics::new(db);
|
|
|
|
let file = sema.parse(position.file_id).syntax().clone();
|
2019-12-13 15:00:05 -06:00
|
|
|
let original_token = pick_best(file.token_at_offset(position.offset))?;
|
2020-02-18 11:35:10 -06:00
|
|
|
let token = sema.descend_into_macros(original_token.clone());
|
2019-11-16 07:49:26 -06:00
|
|
|
|
2019-12-09 11:42:45 -06:00
|
|
|
let nav_targets = match_ast! {
|
2020-02-18 11:35:10 -06:00
|
|
|
match (token.parent()) {
|
2019-11-17 11:15:55 -06:00
|
|
|
ast::NameRef(name_ref) => {
|
2020-02-18 11:35:10 -06:00
|
|
|
reference_definition(&sema, &name_ref).to_vec()
|
2019-11-17 11:15:55 -06:00
|
|
|
},
|
|
|
|
ast::Name(name) => {
|
2020-06-08 07:38:10 -05:00
|
|
|
let def = match classify_name(&sema, &name)? {
|
|
|
|
NameClass::Definition(def) | NameClass::ConstReference(def) => def,
|
|
|
|
NameClass::FieldShorthand { local: _, field } => field,
|
|
|
|
};
|
2020-02-28 08:27:52 -06:00
|
|
|
let nav = def.try_to_nav(sema.db)?;
|
|
|
|
vec![nav]
|
2019-11-17 11:15:55 -06:00
|
|
|
},
|
|
|
|
_ => return None,
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-12-09 11:42:45 -06:00
|
|
|
Some(RangeInfo::new(original_token.text_range(), nav_targets))
|
2019-11-16 13:18:07 -06:00
|
|
|
}
|
|
|
|
|
2019-12-13 15:00:05 -06:00
|
|
|
fn pick_best(tokens: TokenAtOffset<SyntaxToken>) -> Option<SyntaxToken> {
|
|
|
|
return tokens.max_by_key(priority);
|
|
|
|
fn priority(n: &SyntaxToken) -> usize {
|
|
|
|
match n.kind() {
|
|
|
|
IDENT | INT_NUMBER => 2,
|
|
|
|
kind if kind.is_trivia() => 0,
|
|
|
|
_ => 1,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-28 08:43:10 -05:00
|
|
|
#[derive(Debug)]
|
2019-01-13 04:31:37 -06:00
|
|
|
pub(crate) enum ReferenceResult {
|
|
|
|
Exact(NavigationTarget),
|
|
|
|
Approximate(Vec<NavigationTarget>),
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ReferenceResult {
|
|
|
|
fn to_vec(self) -> Vec<NavigationTarget> {
|
|
|
|
match self {
|
2020-04-18 15:05:06 -05:00
|
|
|
ReferenceResult::Exact(target) => vec![target],
|
|
|
|
ReferenceResult::Approximate(vec) => vec,
|
2019-01-13 04:31:37 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-08 16:38:51 -06:00
|
|
|
pub(crate) fn reference_definition(
|
2020-02-18 11:35:10 -06:00
|
|
|
sema: &Semantics<RootDatabase>,
|
|
|
|
name_ref: &ast::NameRef,
|
2019-01-15 12:02:42 -06:00
|
|
|
) -> ReferenceResult {
|
2020-02-18 11:35:10 -06:00
|
|
|
let name_kind = classify_name_ref(sema, name_ref);
|
2020-02-22 09:57:29 -06:00
|
|
|
if let Some(def) = name_kind {
|
2020-03-02 12:00:38 -06:00
|
|
|
let def = def.definition();
|
|
|
|
|
2020-02-18 11:35:10 -06:00
|
|
|
return match def.try_to_nav(sema.db) {
|
2020-02-22 09:57:29 -06:00
|
|
|
Some(nav) => ReferenceResult::Exact(nav),
|
|
|
|
None => ReferenceResult::Approximate(Vec::new()),
|
|
|
|
};
|
|
|
|
}
|
2019-03-01 17:26:49 -06:00
|
|
|
|
2019-04-10 03:15:55 -05:00
|
|
|
// Fallback index based approach:
|
2020-02-18 11:35:10 -06:00
|
|
|
let navs = symbol_index::index_resolve(sema.db, name_ref)
|
2019-01-08 13:33:36 -06:00
|
|
|
.into_iter()
|
2020-02-18 11:35:10 -06:00
|
|
|
.map(|s| s.to_nav(sema.db))
|
2019-01-08 13:33:36 -06:00
|
|
|
.collect();
|
2020-04-18 15:05:06 -05:00
|
|
|
ReferenceResult::Approximate(navs)
|
2019-01-08 13:33:36 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
2020-05-20 04:54:57 -05:00
|
|
|
use test_utils::assert_eq_text;
|
2019-01-25 11:32:34 -06:00
|
|
|
|
2019-01-08 13:33:36 -06:00
|
|
|
use crate::mock_analysis::analysis_and_position;
|
|
|
|
|
2020-03-17 04:46:46 -05:00
|
|
|
fn check_goto(ra_fixture: &str, expected: &str, expected_range: &str) {
|
|
|
|
let (analysis, pos) = analysis_and_position(ra_fixture);
|
2019-01-11 09:17:20 -06:00
|
|
|
|
|
|
|
let mut navs = analysis.goto_definition(pos).unwrap().unwrap().info;
|
2020-03-25 07:53:15 -05:00
|
|
|
if navs.len() == 0 {
|
|
|
|
panic!("unresolved reference")
|
|
|
|
}
|
2019-01-11 09:17:20 -06:00
|
|
|
assert_eq!(navs.len(), 1);
|
2019-12-14 11:20:07 -06:00
|
|
|
|
|
|
|
let nav = navs.pop().unwrap();
|
2019-12-18 08:33:36 -06:00
|
|
|
let file_text = analysis.file_text(nav.file_id()).unwrap();
|
2019-12-14 11:20:07 -06:00
|
|
|
|
2019-12-18 08:33:36 -06:00
|
|
|
let mut actual = file_text[nav.full_range()].to_string();
|
|
|
|
if let Some(focus) = nav.focus_range() {
|
|
|
|
actual += "|";
|
|
|
|
actual += &file_text[focus];
|
|
|
|
}
|
|
|
|
|
|
|
|
if !expected_range.contains("...") {
|
|
|
|
test_utils::assert_eq_text!(&actual, expected_range);
|
|
|
|
} else {
|
|
|
|
let mut parts = expected_range.split("...");
|
|
|
|
let prefix = parts.next().unwrap();
|
|
|
|
let suffix = parts.next().unwrap();
|
|
|
|
assert!(
|
|
|
|
actual.starts_with(prefix) && actual.ends_with(suffix),
|
|
|
|
"\nExpected: {}\n Actual: {}\n",
|
|
|
|
expected_range,
|
|
|
|
actual
|
|
|
|
);
|
|
|
|
}
|
2019-12-14 11:20:07 -06:00
|
|
|
|
|
|
|
nav.assert_match(expected);
|
|
|
|
}
|
|
|
|
|
2019-01-08 13:33:36 -06:00
|
|
|
#[test]
|
2019-12-20 07:47:01 -06:00
|
|
|
fn goto_def_in_items() {
|
2019-01-11 09:17:20 -06:00
|
|
|
check_goto(
|
2019-01-08 13:33:36 -06:00
|
|
|
"
|
|
|
|
//- /lib.rs
|
|
|
|
struct Foo;
|
|
|
|
enum E { X(Foo<|>) }
|
|
|
|
",
|
2020-04-24 16:51:02 -05:00
|
|
|
"Foo STRUCT_DEF FileId(1) 0..11 7..10",
|
2019-12-18 08:33:36 -06:00
|
|
|
"struct Foo;|Foo",
|
2019-12-13 12:20:02 -06:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2019-12-20 07:47:01 -06:00
|
|
|
fn goto_def_at_start_of_item() {
|
2019-12-13 12:20:02 -06:00
|
|
|
check_goto(
|
|
|
|
"
|
|
|
|
//- /lib.rs
|
|
|
|
struct Foo;
|
|
|
|
enum E { X(<|>Foo) }
|
|
|
|
",
|
2020-04-24 16:51:02 -05:00
|
|
|
"Foo STRUCT_DEF FileId(1) 0..11 7..10",
|
2019-12-18 08:33:36 -06:00
|
|
|
"struct Foo;|Foo",
|
2019-01-07 17:30:49 -06:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn goto_definition_resolves_correct_name() {
|
2019-01-11 09:17:20 -06:00
|
|
|
check_goto(
|
2019-01-07 17:30:49 -06:00
|
|
|
"
|
|
|
|
//- /lib.rs
|
|
|
|
use a::Foo;
|
|
|
|
mod a;
|
|
|
|
mod b;
|
|
|
|
enum E { X(Foo<|>) }
|
2019-12-18 07:52:58 -06:00
|
|
|
|
2019-01-07 17:30:49 -06:00
|
|
|
//- /a.rs
|
|
|
|
struct Foo;
|
2019-12-18 07:52:58 -06:00
|
|
|
|
2019-01-07 17:30:49 -06:00
|
|
|
//- /b.rs
|
|
|
|
struct Foo;
|
|
|
|
",
|
2020-04-24 16:51:02 -05:00
|
|
|
"Foo STRUCT_DEF FileId(2) 0..11 7..10",
|
2019-12-18 08:33:36 -06:00
|
|
|
"struct Foo;|Foo",
|
2019-01-08 13:33:36 -06:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2019-12-20 07:47:01 -06:00
|
|
|
fn goto_def_for_module_declaration() {
|
2019-01-11 09:17:20 -06:00
|
|
|
check_goto(
|
2019-01-08 13:33:36 -06:00
|
|
|
"
|
|
|
|
//- /lib.rs
|
|
|
|
mod <|>foo;
|
2019-12-18 07:52:58 -06:00
|
|
|
|
2019-01-08 13:33:36 -06:00
|
|
|
//- /foo.rs
|
|
|
|
// empty
|
2019-01-11 09:17:20 -06:00
|
|
|
",
|
2020-04-24 16:51:02 -05:00
|
|
|
"foo SOURCE_FILE FileId(2) 0..10",
|
2019-12-18 08:33:36 -06:00
|
|
|
"// empty\n\n",
|
2019-01-08 13:33:36 -06:00
|
|
|
);
|
|
|
|
|
2019-01-11 09:17:20 -06:00
|
|
|
check_goto(
|
2019-01-08 13:33:36 -06:00
|
|
|
"
|
|
|
|
//- /lib.rs
|
|
|
|
mod <|>foo;
|
2019-12-18 07:52:58 -06:00
|
|
|
|
2019-01-08 13:33:36 -06:00
|
|
|
//- /foo/mod.rs
|
|
|
|
// empty
|
2019-01-11 09:17:20 -06:00
|
|
|
",
|
2020-04-24 16:51:02 -05:00
|
|
|
"foo SOURCE_FILE FileId(2) 0..10",
|
2019-12-18 08:33:36 -06:00
|
|
|
"// empty\n\n",
|
2019-01-08 13:33:36 -06:00
|
|
|
);
|
|
|
|
}
|
2019-01-13 09:56:57 -06:00
|
|
|
|
2019-04-24 15:16:50 -05:00
|
|
|
#[test]
|
2019-12-20 07:47:01 -06:00
|
|
|
fn goto_def_for_macros() {
|
2019-04-24 15:16:50 -05:00
|
|
|
check_goto(
|
|
|
|
"
|
|
|
|
//- /lib.rs
|
2019-12-18 08:33:36 -06:00
|
|
|
macro_rules! foo { () => { () } }
|
2019-04-24 15:16:50 -05:00
|
|
|
|
|
|
|
fn bar() {
|
|
|
|
<|>foo!();
|
|
|
|
}
|
|
|
|
",
|
2020-04-24 16:51:02 -05:00
|
|
|
"foo MACRO_CALL FileId(1) 0..33 13..16",
|
2019-12-18 08:33:36 -06:00
|
|
|
"macro_rules! foo { () => { () } }|foo",
|
2019-04-24 15:16:50 -05:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-06-01 06:34:19 -05:00
|
|
|
#[test]
|
2019-12-20 07:47:01 -06:00
|
|
|
fn goto_def_for_macros_from_other_crates() {
|
2019-06-01 06:34:19 -05:00
|
|
|
check_goto(
|
|
|
|
"
|
|
|
|
//- /lib.rs
|
|
|
|
use foo::foo;
|
|
|
|
fn bar() {
|
|
|
|
<|>foo!();
|
|
|
|
}
|
|
|
|
|
|
|
|
//- /foo/lib.rs
|
|
|
|
#[macro_export]
|
2020-05-01 09:26:22 -05:00
|
|
|
macro_rules! foo { () => { () } }
|
|
|
|
",
|
|
|
|
"foo MACRO_CALL FileId(2) 0..49 29..32",
|
|
|
|
"#[macro_export]\nmacro_rules! foo { () => { () } }|foo",
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn goto_def_for_use_alias() {
|
|
|
|
check_goto(
|
|
|
|
"
|
|
|
|
//- /lib.rs
|
2020-05-02 14:42:27 -05:00
|
|
|
use foo as bar<|>;
|
2020-05-01 09:26:22 -05:00
|
|
|
|
|
|
|
|
2020-05-02 14:42:27 -05:00
|
|
|
//- /foo/lib.rs
|
|
|
|
#[macro_export]
|
|
|
|
macro_rules! foo { () => { () } }",
|
|
|
|
"SOURCE_FILE FileId(2) 0..50",
|
|
|
|
"#[macro_export]\nmacro_rules! foo { () => { () } }\n",
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn goto_def_for_use_alias_foo_macro() {
|
|
|
|
check_goto(
|
|
|
|
"
|
|
|
|
//- /lib.rs
|
|
|
|
use foo::foo as bar<|>;
|
|
|
|
|
2019-06-01 06:34:19 -05:00
|
|
|
//- /foo/lib.rs
|
|
|
|
#[macro_export]
|
2019-12-18 08:33:36 -06:00
|
|
|
macro_rules! foo { () => { () } }
|
2019-06-01 06:34:19 -05:00
|
|
|
",
|
2020-04-24 16:51:02 -05:00
|
|
|
"foo MACRO_CALL FileId(2) 0..49 29..32",
|
2019-12-18 08:33:36 -06:00
|
|
|
"#[macro_export]\nmacro_rules! foo { () => { () } }|foo",
|
2019-06-01 06:34:19 -05:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-10-31 12:29:56 -05:00
|
|
|
#[test]
|
2019-12-20 07:47:01 -06:00
|
|
|
fn goto_def_for_macros_in_use_tree() {
|
2019-10-31 12:29:56 -05:00
|
|
|
check_goto(
|
|
|
|
"
|
|
|
|
//- /lib.rs
|
|
|
|
use foo::foo<|>;
|
|
|
|
|
|
|
|
//- /foo/lib.rs
|
|
|
|
#[macro_export]
|
2019-12-18 08:33:36 -06:00
|
|
|
macro_rules! foo { () => { () } }
|
2019-10-31 12:29:56 -05:00
|
|
|
",
|
2020-04-24 16:51:02 -05:00
|
|
|
"foo MACRO_CALL FileId(2) 0..49 29..32",
|
2019-12-18 08:33:36 -06:00
|
|
|
"#[macro_export]\nmacro_rules! foo { () => { () } }|foo",
|
2019-10-31 12:29:56 -05:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-11-03 11:49:49 -06:00
|
|
|
#[test]
|
2019-12-20 07:47:01 -06:00
|
|
|
fn goto_def_for_macro_defined_fn_with_arg() {
|
2019-12-18 08:33:36 -06:00
|
|
|
check_goto(
|
2019-11-03 11:49:49 -06:00
|
|
|
"
|
|
|
|
//- /lib.rs
|
|
|
|
macro_rules! define_fn {
|
|
|
|
($name:ident) => (fn $name() {})
|
|
|
|
}
|
|
|
|
|
2019-12-14 11:20:07 -06:00
|
|
|
define_fn!(foo);
|
2019-11-03 11:49:49 -06:00
|
|
|
|
|
|
|
fn bar() {
|
|
|
|
<|>foo();
|
|
|
|
}
|
|
|
|
",
|
2020-04-24 16:51:02 -05:00
|
|
|
"foo FN_DEF FileId(1) 64..80 75..78",
|
2019-12-14 11:20:07 -06:00
|
|
|
"define_fn!(foo);|foo",
|
2019-11-03 11:49:49 -06:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2019-12-20 07:47:01 -06:00
|
|
|
fn goto_def_for_macro_defined_fn_no_arg() {
|
2019-12-18 08:33:36 -06:00
|
|
|
check_goto(
|
2019-11-03 11:49:49 -06:00
|
|
|
"
|
|
|
|
//- /lib.rs
|
|
|
|
macro_rules! define_fn {
|
|
|
|
() => (fn foo() {})
|
|
|
|
}
|
|
|
|
|
|
|
|
define_fn!();
|
|
|
|
|
|
|
|
fn bar() {
|
|
|
|
<|>foo();
|
|
|
|
}
|
|
|
|
",
|
2020-04-24 16:51:02 -05:00
|
|
|
"foo FN_DEF FileId(1) 51..64 51..64",
|
2019-12-14 11:20:07 -06:00
|
|
|
"define_fn!();|define_fn!();",
|
2019-11-03 11:49:49 -06:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-12-20 09:11:07 -06:00
|
|
|
#[test]
|
|
|
|
fn goto_definition_works_for_macro_inside_pattern() {
|
|
|
|
check_goto(
|
|
|
|
"
|
|
|
|
//- /lib.rs
|
|
|
|
macro_rules! foo {() => {0}}
|
|
|
|
|
|
|
|
fn bar() {
|
|
|
|
match (0,1) {
|
|
|
|
(<|>foo!(), _) => {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
",
|
2020-04-24 16:51:02 -05:00
|
|
|
"foo MACRO_CALL FileId(1) 0..28 13..16",
|
2019-12-20 09:11:07 -06:00
|
|
|
"macro_rules! foo {() => {0}}|foo",
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn goto_definition_works_for_macro_inside_match_arm_lhs() {
|
|
|
|
check_goto(
|
|
|
|
"
|
|
|
|
//- /lib.rs
|
|
|
|
macro_rules! foo {() => {0}}
|
|
|
|
|
|
|
|
fn bar() {
|
|
|
|
match 0 {
|
|
|
|
<|>foo!() => {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
",
|
2020-04-24 16:51:02 -05:00
|
|
|
"foo MACRO_CALL FileId(1) 0..28 13..16",
|
2019-12-20 09:11:07 -06:00
|
|
|
"macro_rules! foo {() => {0}}|foo",
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-01-13 09:56:57 -06:00
|
|
|
#[test]
|
2019-12-20 07:47:01 -06:00
|
|
|
fn goto_def_for_methods() {
|
2019-01-13 09:56:57 -06:00
|
|
|
check_goto(
|
|
|
|
"
|
|
|
|
//- /lib.rs
|
|
|
|
struct Foo;
|
|
|
|
impl Foo {
|
2019-12-18 08:33:36 -06:00
|
|
|
fn frobnicate(&self) { }
|
2019-01-13 09:56:57 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
fn bar(foo: &Foo) {
|
|
|
|
foo.frobnicate<|>();
|
|
|
|
}
|
|
|
|
",
|
2020-04-24 16:51:02 -05:00
|
|
|
"frobnicate FN_DEF FileId(1) 27..51 30..40",
|
2019-12-18 08:33:36 -06:00
|
|
|
"fn frobnicate(&self) { }|frobnicate",
|
2019-01-13 09:56:57 -06:00
|
|
|
);
|
2019-01-25 11:32:34 -06:00
|
|
|
}
|
2019-01-13 09:56:57 -06:00
|
|
|
|
2019-01-25 11:32:34 -06:00
|
|
|
#[test]
|
2019-12-20 07:47:01 -06:00
|
|
|
fn goto_def_for_fields() {
|
2019-01-13 09:56:57 -06:00
|
|
|
check_goto(
|
2020-03-25 07:53:15 -05:00
|
|
|
r"
|
2019-01-13 09:56:57 -06:00
|
|
|
//- /lib.rs
|
2019-01-25 11:32:34 -06:00
|
|
|
struct Foo {
|
|
|
|
spam: u32,
|
|
|
|
}
|
|
|
|
|
|
|
|
fn bar(foo: &Foo) {
|
|
|
|
foo.spam<|>;
|
|
|
|
}
|
2019-01-13 09:56:57 -06:00
|
|
|
",
|
2020-04-24 16:51:02 -05:00
|
|
|
"spam RECORD_FIELD_DEF FileId(1) 17..26 17..21",
|
2019-12-18 08:33:36 -06:00
|
|
|
"spam: u32|spam",
|
2019-01-13 09:56:57 -06:00
|
|
|
);
|
|
|
|
}
|
2019-02-23 03:02:42 -06:00
|
|
|
|
2019-02-27 09:22:53 -06:00
|
|
|
#[test]
|
2019-12-20 07:47:01 -06:00
|
|
|
fn goto_def_for_record_fields() {
|
2019-02-27 09:22:53 -06:00
|
|
|
check_goto(
|
2020-03-25 07:53:15 -05:00
|
|
|
r"
|
2019-02-27 09:22:53 -06:00
|
|
|
//- /lib.rs
|
|
|
|
struct Foo {
|
|
|
|
spam: u32,
|
|
|
|
}
|
|
|
|
|
|
|
|
fn bar() -> Foo {
|
|
|
|
Foo {
|
|
|
|
spam<|>: 0,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
",
|
2020-04-24 16:51:02 -05:00
|
|
|
"spam RECORD_FIELD_DEF FileId(1) 17..26 17..21",
|
2019-12-18 08:33:36 -06:00
|
|
|
"spam: u32|spam",
|
2019-02-27 09:22:53 -06:00
|
|
|
);
|
|
|
|
}
|
2020-04-18 15:05:06 -05:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn goto_def_for_record_pat_fields() {
|
|
|
|
check_goto(
|
|
|
|
r"
|
|
|
|
//- /lib.rs
|
|
|
|
struct Foo {
|
|
|
|
spam: u32,
|
|
|
|
}
|
|
|
|
|
|
|
|
fn bar(foo: Foo) -> Foo {
|
|
|
|
let Foo { spam<|>: _, } = foo
|
|
|
|
}
|
|
|
|
",
|
2020-04-24 16:51:02 -05:00
|
|
|
"spam RECORD_FIELD_DEF FileId(1) 17..26 17..21",
|
2020-04-18 15:05:06 -05:00
|
|
|
"spam: u32|spam",
|
|
|
|
);
|
|
|
|
}
|
2019-10-31 09:13:52 -05:00
|
|
|
|
2020-03-25 07:53:15 -05:00
|
|
|
#[test]
|
|
|
|
fn goto_def_for_record_fields_macros() {
|
|
|
|
check_goto(
|
|
|
|
r"
|
|
|
|
//- /lib.rs
|
|
|
|
macro_rules! m { () => { 92 };}
|
|
|
|
struct Foo { spam: u32 }
|
|
|
|
|
|
|
|
fn bar() -> Foo {
|
|
|
|
Foo { spam<|>: m!() }
|
|
|
|
}
|
|
|
|
",
|
2020-04-24 16:51:02 -05:00
|
|
|
"spam RECORD_FIELD_DEF FileId(1) 45..54 45..49",
|
2020-03-25 07:53:15 -05:00
|
|
|
"spam: u32|spam",
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-12-13 14:59:25 -06:00
|
|
|
#[test]
|
|
|
|
fn goto_for_tuple_fields() {
|
|
|
|
check_goto(
|
|
|
|
"
|
|
|
|
//- /lib.rs
|
|
|
|
struct Foo(u32);
|
|
|
|
|
|
|
|
fn bar() {
|
|
|
|
let foo = Foo(0);
|
|
|
|
foo.<|>0;
|
|
|
|
}
|
|
|
|
",
|
2020-04-24 16:51:02 -05:00
|
|
|
"TUPLE_FIELD_DEF FileId(1) 11..14",
|
2019-12-18 08:33:36 -06:00
|
|
|
"u32",
|
2019-12-13 14:59:25 -06:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-10-31 09:13:52 -05:00
|
|
|
#[test]
|
2019-12-20 07:47:01 -06:00
|
|
|
fn goto_def_for_ufcs_inherent_methods() {
|
2019-10-31 09:13:52 -05:00
|
|
|
check_goto(
|
|
|
|
"
|
|
|
|
//- /lib.rs
|
|
|
|
struct Foo;
|
|
|
|
impl Foo {
|
2019-12-18 08:33:36 -06:00
|
|
|
fn frobnicate() { }
|
2019-10-31 09:13:52 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn bar(foo: &Foo) {
|
|
|
|
Foo::frobnicate<|>();
|
|
|
|
}
|
|
|
|
",
|
2020-04-24 16:51:02 -05:00
|
|
|
"frobnicate FN_DEF FileId(1) 27..46 30..40",
|
2019-12-18 08:33:36 -06:00
|
|
|
"fn frobnicate() { }|frobnicate",
|
2019-10-31 09:13:52 -05:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2019-12-20 07:47:01 -06:00
|
|
|
fn goto_def_for_ufcs_trait_methods_through_traits() {
|
2019-10-31 09:13:52 -05:00
|
|
|
check_goto(
|
|
|
|
"
|
|
|
|
//- /lib.rs
|
|
|
|
trait Foo {
|
|
|
|
fn frobnicate();
|
|
|
|
}
|
|
|
|
|
|
|
|
fn bar() {
|
|
|
|
Foo::frobnicate<|>();
|
|
|
|
}
|
|
|
|
",
|
2020-04-24 16:51:02 -05:00
|
|
|
"frobnicate FN_DEF FileId(1) 16..32 19..29",
|
2019-12-18 08:33:36 -06:00
|
|
|
"fn frobnicate();|frobnicate",
|
2019-10-31 09:13:52 -05:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2019-12-20 07:47:01 -06:00
|
|
|
fn goto_def_for_ufcs_trait_methods_through_self() {
|
2019-10-31 09:13:52 -05:00
|
|
|
check_goto(
|
|
|
|
"
|
|
|
|
//- /lib.rs
|
|
|
|
struct Foo;
|
|
|
|
trait Trait {
|
|
|
|
fn frobnicate();
|
|
|
|
}
|
|
|
|
impl Trait for Foo {}
|
|
|
|
|
|
|
|
fn bar() {
|
|
|
|
Foo::frobnicate<|>();
|
|
|
|
}
|
|
|
|
",
|
2020-04-24 16:51:02 -05:00
|
|
|
"frobnicate FN_DEF FileId(1) 30..46 33..43",
|
2019-12-18 08:33:36 -06:00
|
|
|
"fn frobnicate();|frobnicate",
|
2019-10-31 09:13:52 -05:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-03-07 02:32:39 -06:00
|
|
|
#[test]
|
|
|
|
fn goto_definition_on_self() {
|
|
|
|
check_goto(
|
|
|
|
"
|
|
|
|
//- /lib.rs
|
|
|
|
struct Foo;
|
|
|
|
impl Foo {
|
|
|
|
pub fn new() -> Self {
|
|
|
|
Self<|> {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
",
|
2020-04-24 16:51:02 -05:00
|
|
|
"impl IMPL_DEF FileId(1) 12..73",
|
2019-12-18 08:33:36 -06:00
|
|
|
"impl Foo {...}",
|
2019-03-07 02:32:39 -06:00
|
|
|
);
|
|
|
|
|
|
|
|
check_goto(
|
|
|
|
"
|
|
|
|
//- /lib.rs
|
|
|
|
struct Foo;
|
|
|
|
impl Foo {
|
|
|
|
pub fn new() -> Self<|> {
|
|
|
|
Self {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
",
|
2020-04-24 16:51:02 -05:00
|
|
|
"impl IMPL_DEF FileId(1) 12..73",
|
2019-12-18 08:33:36 -06:00
|
|
|
"impl Foo {...}",
|
2019-03-07 02:32:39 -06:00
|
|
|
);
|
|
|
|
|
|
|
|
check_goto(
|
|
|
|
"
|
|
|
|
//- /lib.rs
|
|
|
|
enum Foo { A }
|
|
|
|
impl Foo {
|
|
|
|
pub fn new() -> Self<|> {
|
|
|
|
Foo::A
|
|
|
|
}
|
|
|
|
}
|
|
|
|
",
|
2020-04-24 16:51:02 -05:00
|
|
|
"impl IMPL_DEF FileId(1) 15..75",
|
2019-12-18 08:33:36 -06:00
|
|
|
"impl Foo {...}",
|
2019-03-07 02:32:39 -06:00
|
|
|
);
|
|
|
|
|
|
|
|
check_goto(
|
|
|
|
"
|
|
|
|
//- /lib.rs
|
|
|
|
enum Foo { A }
|
|
|
|
impl Foo {
|
|
|
|
pub fn thing(a: &Self<|>) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
",
|
2020-04-24 16:51:02 -05:00
|
|
|
"impl IMPL_DEF FileId(1) 15..62",
|
2019-12-18 08:33:36 -06:00
|
|
|
"impl Foo {...}",
|
2019-03-07 02:32:39 -06:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn goto_definition_on_self_in_trait_impl() {
|
|
|
|
check_goto(
|
|
|
|
"
|
|
|
|
//- /lib.rs
|
|
|
|
struct Foo;
|
|
|
|
trait Make {
|
|
|
|
fn new() -> Self;
|
|
|
|
}
|
|
|
|
impl Make for Foo {
|
|
|
|
fn new() -> Self {
|
|
|
|
Self<|> {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
",
|
2020-04-24 16:51:02 -05:00
|
|
|
"impl IMPL_DEF FileId(1) 49..115",
|
2019-12-18 08:33:36 -06:00
|
|
|
"impl Make for Foo {...}",
|
2019-03-07 02:32:39 -06:00
|
|
|
);
|
|
|
|
|
|
|
|
check_goto(
|
|
|
|
"
|
|
|
|
//- /lib.rs
|
|
|
|
struct Foo;
|
|
|
|
trait Make {
|
|
|
|
fn new() -> Self;
|
|
|
|
}
|
|
|
|
impl Make for Foo {
|
|
|
|
fn new() -> Self<|> {
|
2019-11-26 12:18:26 -06:00
|
|
|
Self {}
|
2019-03-07 02:32:39 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
",
|
2020-04-24 16:51:02 -05:00
|
|
|
"impl IMPL_DEF FileId(1) 49..115",
|
2019-12-18 08:33:36 -06:00
|
|
|
"impl Make for Foo {...}",
|
2019-03-07 02:32:39 -06:00
|
|
|
);
|
|
|
|
}
|
2019-02-27 09:22:53 -06:00
|
|
|
|
2019-02-23 03:02:42 -06:00
|
|
|
#[test]
|
2019-12-20 07:47:01 -06:00
|
|
|
fn goto_def_when_used_on_definition_name_itself() {
|
2019-02-23 03:02:42 -06:00
|
|
|
check_goto(
|
|
|
|
"
|
|
|
|
//- /lib.rs
|
|
|
|
struct Foo<|> { value: u32 }
|
|
|
|
",
|
2020-04-24 16:51:02 -05:00
|
|
|
"Foo STRUCT_DEF FileId(1) 0..25 7..10",
|
2019-12-18 08:33:36 -06:00
|
|
|
"struct Foo { value: u32 }|Foo",
|
2019-02-23 03:02:42 -06:00
|
|
|
);
|
|
|
|
|
|
|
|
check_goto(
|
|
|
|
r#"
|
|
|
|
//- /lib.rs
|
|
|
|
struct Foo {
|
|
|
|
field<|>: string,
|
|
|
|
}
|
|
|
|
"#,
|
2020-04-24 16:51:02 -05:00
|
|
|
"field RECORD_FIELD_DEF FileId(1) 17..30 17..22",
|
2019-12-18 08:33:36 -06:00
|
|
|
"field: string|field",
|
2019-02-23 03:02:42 -06:00
|
|
|
);
|
|
|
|
|
|
|
|
check_goto(
|
|
|
|
"
|
|
|
|
//- /lib.rs
|
2019-12-18 08:33:36 -06:00
|
|
|
fn foo_test<|>() { }
|
2019-02-23 03:02:42 -06:00
|
|
|
",
|
2020-04-24 16:51:02 -05:00
|
|
|
"foo_test FN_DEF FileId(1) 0..17 3..11",
|
2019-12-18 08:33:36 -06:00
|
|
|
"fn foo_test() { }|foo_test",
|
2019-02-23 03:02:42 -06:00
|
|
|
);
|
|
|
|
|
|
|
|
check_goto(
|
|
|
|
"
|
|
|
|
//- /lib.rs
|
|
|
|
enum Foo<|> {
|
|
|
|
Variant,
|
|
|
|
}
|
|
|
|
",
|
2020-04-24 16:51:02 -05:00
|
|
|
"Foo ENUM_DEF FileId(1) 0..25 5..8",
|
2019-12-18 08:33:36 -06:00
|
|
|
"enum Foo {...}|Foo",
|
2019-02-23 03:02:42 -06:00
|
|
|
);
|
|
|
|
|
|
|
|
check_goto(
|
|
|
|
"
|
|
|
|
//- /lib.rs
|
|
|
|
enum Foo {
|
|
|
|
Variant1,
|
|
|
|
Variant2<|>,
|
|
|
|
Variant3,
|
|
|
|
}
|
|
|
|
",
|
2020-04-24 16:51:02 -05:00
|
|
|
"Variant2 ENUM_VARIANT FileId(1) 29..37 29..37",
|
2019-12-18 08:33:36 -06:00
|
|
|
"Variant2|Variant2",
|
2019-02-23 03:02:42 -06:00
|
|
|
);
|
|
|
|
|
|
|
|
check_goto(
|
|
|
|
r#"
|
|
|
|
//- /lib.rs
|
2019-12-18 08:33:36 -06:00
|
|
|
static INNER<|>: &str = "";
|
2019-02-23 03:02:42 -06:00
|
|
|
"#,
|
2020-04-24 16:51:02 -05:00
|
|
|
"INNER STATIC_DEF FileId(1) 0..24 7..12",
|
2019-12-18 08:33:36 -06:00
|
|
|
"static INNER: &str = \"\";|INNER",
|
2019-02-23 03:02:42 -06:00
|
|
|
);
|
|
|
|
|
|
|
|
check_goto(
|
|
|
|
r#"
|
|
|
|
//- /lib.rs
|
2019-12-18 08:33:36 -06:00
|
|
|
const INNER<|>: &str = "";
|
2019-02-23 03:02:42 -06:00
|
|
|
"#,
|
2020-04-24 16:51:02 -05:00
|
|
|
"INNER CONST_DEF FileId(1) 0..23 6..11",
|
2019-12-18 08:33:36 -06:00
|
|
|
"const INNER: &str = \"\";|INNER",
|
2019-02-23 03:02:42 -06:00
|
|
|
);
|
|
|
|
|
|
|
|
check_goto(
|
|
|
|
r#"
|
|
|
|
//- /lib.rs
|
|
|
|
type Thing<|> = Option<()>;
|
|
|
|
"#,
|
2020-04-24 16:51:02 -05:00
|
|
|
"Thing TYPE_ALIAS_DEF FileId(1) 0..24 5..10",
|
2019-12-18 08:33:36 -06:00
|
|
|
"type Thing = Option<()>;|Thing",
|
2019-02-23 03:02:42 -06:00
|
|
|
);
|
|
|
|
|
|
|
|
check_goto(
|
|
|
|
r#"
|
|
|
|
//- /lib.rs
|
2019-12-18 08:33:36 -06:00
|
|
|
trait Foo<|> { }
|
2019-02-23 03:02:42 -06:00
|
|
|
"#,
|
2020-04-24 16:51:02 -05:00
|
|
|
"Foo TRAIT_DEF FileId(1) 0..13 6..9",
|
2019-12-18 08:33:36 -06:00
|
|
|
"trait Foo { }|Foo",
|
2019-02-23 03:02:42 -06:00
|
|
|
);
|
|
|
|
|
|
|
|
check_goto(
|
|
|
|
r#"
|
|
|
|
//- /lib.rs
|
2019-12-18 08:33:36 -06:00
|
|
|
mod bar<|> { }
|
2019-02-23 03:02:42 -06:00
|
|
|
"#,
|
2020-04-24 16:51:02 -05:00
|
|
|
"bar MODULE FileId(1) 0..11 4..7",
|
2019-12-18 08:33:36 -06:00
|
|
|
"mod bar { }|bar",
|
2019-02-23 03:02:42 -06:00
|
|
|
);
|
|
|
|
}
|
2019-11-16 07:49:26 -06:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn goto_from_macro() {
|
|
|
|
check_goto(
|
|
|
|
"
|
|
|
|
//- /lib.rs
|
|
|
|
macro_rules! id {
|
|
|
|
($($tt:tt)*) => { $($tt)* }
|
|
|
|
}
|
|
|
|
fn foo() {}
|
|
|
|
id! {
|
|
|
|
fn bar() {
|
|
|
|
fo<|>o();
|
|
|
|
}
|
|
|
|
}
|
2019-12-06 14:24:41 -06:00
|
|
|
mod confuse_index { fn foo(); }
|
2019-11-16 07:49:26 -06:00
|
|
|
",
|
2020-04-24 16:51:02 -05:00
|
|
|
"foo FN_DEF FileId(1) 52..63 55..58",
|
2019-12-18 08:33:36 -06:00
|
|
|
"fn foo() {}|foo",
|
2019-11-16 07:49:26 -06:00
|
|
|
);
|
|
|
|
}
|
2019-12-06 12:30:15 -06:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn goto_through_format() {
|
|
|
|
check_goto(
|
|
|
|
"
|
|
|
|
//- /lib.rs
|
|
|
|
#[macro_export]
|
|
|
|
macro_rules! format {
|
|
|
|
($($arg:tt)*) => ($crate::fmt::format($crate::__export::format_args!($($arg)*)))
|
|
|
|
}
|
|
|
|
#[rustc_builtin_macro]
|
|
|
|
#[macro_export]
|
|
|
|
macro_rules! format_args {
|
|
|
|
($fmt:expr) => ({ /* compiler built-in */ });
|
|
|
|
($fmt:expr, $($args:tt)*) => ({ /* compiler built-in */ })
|
|
|
|
}
|
|
|
|
pub mod __export {
|
|
|
|
pub use crate::format_args;
|
2019-12-06 14:24:41 -06:00
|
|
|
fn foo() {} // for index confusion
|
2019-12-06 12:30:15 -06:00
|
|
|
}
|
|
|
|
fn foo() -> i8 {}
|
|
|
|
fn test() {
|
|
|
|
format!(\"{}\", fo<|>o())
|
|
|
|
}
|
|
|
|
",
|
2020-04-24 16:51:02 -05:00
|
|
|
"foo FN_DEF FileId(1) 398..415 401..404",
|
2019-12-18 08:33:36 -06:00
|
|
|
"fn foo() -> i8 {}|foo",
|
2019-12-06 12:30:15 -06:00
|
|
|
);
|
|
|
|
}
|
2019-12-07 11:54:18 -06:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn goto_for_type_param() {
|
|
|
|
check_goto(
|
2020-05-04 05:20:38 -05:00
|
|
|
r#"
|
2019-12-07 11:54:18 -06:00
|
|
|
//- /lib.rs
|
2020-05-04 05:20:38 -05:00
|
|
|
struct Foo<T: Clone> {
|
2019-12-07 11:54:18 -06:00
|
|
|
t: <|>T,
|
|
|
|
}
|
2020-05-04 05:20:38 -05:00
|
|
|
"#,
|
|
|
|
"T TYPE_PARAM FileId(1) 11..19 11..12",
|
|
|
|
"T: Clone|T",
|
2019-12-07 11:54:18 -06:00
|
|
|
);
|
|
|
|
}
|
2019-12-18 09:25:15 -06:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn goto_within_macro() {
|
|
|
|
check_goto(
|
|
|
|
"
|
|
|
|
//- /lib.rs
|
|
|
|
macro_rules! id {
|
|
|
|
($($tt:tt)*) => ($($tt)*)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn foo() {
|
|
|
|
let x = 1;
|
|
|
|
id!({
|
|
|
|
let y = <|>x;
|
|
|
|
let z = y;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
",
|
2020-04-24 16:51:02 -05:00
|
|
|
"x BIND_PAT FileId(1) 69..70",
|
2019-12-18 09:25:15 -06:00
|
|
|
"x",
|
|
|
|
);
|
|
|
|
|
|
|
|
check_goto(
|
|
|
|
"
|
|
|
|
//- /lib.rs
|
|
|
|
macro_rules! id {
|
|
|
|
($($tt:tt)*) => ($($tt)*)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn foo() {
|
|
|
|
let x = 1;
|
|
|
|
id!({
|
|
|
|
let y = x;
|
|
|
|
let z = <|>y;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
",
|
2020-04-24 16:51:02 -05:00
|
|
|
"y BIND_PAT FileId(1) 98..99",
|
2019-12-18 09:25:15 -06:00
|
|
|
"y",
|
|
|
|
);
|
|
|
|
}
|
2019-12-20 04:19:09 -06:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn goto_def_in_local_fn() {
|
|
|
|
check_goto(
|
|
|
|
"
|
|
|
|
//- /lib.rs
|
|
|
|
fn main() {
|
|
|
|
fn foo() {
|
|
|
|
let x = 92;
|
|
|
|
<|>x;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
",
|
2020-04-24 16:51:02 -05:00
|
|
|
"x BIND_PAT FileId(1) 39..40",
|
2019-12-20 04:19:09 -06:00
|
|
|
"x",
|
|
|
|
);
|
|
|
|
}
|
2019-12-20 07:47:01 -06:00
|
|
|
|
2020-03-14 01:25:30 -05:00
|
|
|
#[test]
|
|
|
|
fn goto_def_in_local_macro() {
|
|
|
|
check_goto(
|
2020-03-17 04:46:46 -05:00
|
|
|
r"
|
|
|
|
//- /lib.rs
|
2020-03-14 01:25:30 -05:00
|
|
|
fn bar() {
|
|
|
|
macro_rules! foo { () => { () } }
|
|
|
|
<|>foo!();
|
|
|
|
}
|
|
|
|
",
|
2020-04-24 16:51:02 -05:00
|
|
|
"foo MACRO_CALL FileId(1) 15..48 28..31",
|
2020-03-14 01:25:30 -05:00
|
|
|
"macro_rules! foo { () => { () } }|foo",
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-12-20 07:47:01 -06:00
|
|
|
#[test]
|
|
|
|
fn goto_def_for_field_init_shorthand() {
|
|
|
|
check_goto(
|
|
|
|
"
|
|
|
|
//- /lib.rs
|
|
|
|
struct Foo { x: i32 }
|
|
|
|
fn main() {
|
|
|
|
let x = 92;
|
|
|
|
Foo { x<|> };
|
|
|
|
}
|
|
|
|
",
|
2020-04-24 16:51:02 -05:00
|
|
|
"x BIND_PAT FileId(1) 42..43",
|
2020-03-02 12:00:38 -06:00
|
|
|
"x",
|
2019-12-20 07:47:01 -06:00
|
|
|
)
|
|
|
|
}
|
2020-06-06 14:16:59 -05:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn goto_def_for_enum_variant_field() {
|
|
|
|
check_goto(
|
|
|
|
"
|
|
|
|
//- /lib.rs
|
|
|
|
enum Foo {
|
|
|
|
Bar { x: i32 }
|
|
|
|
}
|
|
|
|
fn baz(foo: Foo) {
|
|
|
|
match foo {
|
|
|
|
Foo::Bar { x<|> } => x
|
|
|
|
};
|
|
|
|
}
|
|
|
|
",
|
|
|
|
"x RECORD_FIELD_DEF FileId(1) 21..27 21..22",
|
|
|
|
"x: i32|x",
|
|
|
|
);
|
|
|
|
}
|
2019-01-08 13:33:36 -06:00
|
|
|
}
|