diff options
author | Dmitry <[email protected]> | 2020-08-14 19:43:34 +0100 |
---|---|---|
committer | Dmitry <[email protected]> | 2020-08-14 20:37:43 +0100 |
commit | 73315c9168901ef6d676f017daaa9b4976380c03 (patch) | |
tree | 0fae548ddc8dbf3fdfd553e4020db8e6826c8d84 /xtask | |
parent | 178c3e135a2a249692f7784712492e7884ae0c00 (diff) |
synchronizing changes
Diffstat (limited to 'xtask')
-rw-r--r-- | xtask/src/codegen.rs | 8 | ||||
-rw-r--r-- | xtask/src/codegen/gen_unstable_future_descriptor.rs | 3 |
2 files changed, 5 insertions, 6 deletions
diff --git a/xtask/src/codegen.rs b/xtask/src/codegen.rs index 950dd61b2..4b2b614fa 100644 --- a/xtask/src/codegen.rs +++ b/xtask/src/codegen.rs | |||
@@ -29,9 +29,9 @@ pub use self::{ | |||
29 | // Directory used by xtask | 29 | // Directory used by xtask |
30 | const STORAGE: &str = ".xtask"; | 30 | const STORAGE: &str = ".xtask"; |
31 | 31 | ||
32 | const GRAMMAR_DIR: &str = "crates/ra_parser/src/grammar"; | 32 | const GRAMMAR_DIR: &str = "crates/parser/src/grammar"; |
33 | const OK_INLINE_TESTS_DIR: &str = "crates/ra_syntax/test_data/parser/inline/ok"; | 33 | const OK_INLINE_TESTS_DIR: &str = "crates/syntax/test_data/parser/inline/ok"; |
34 | const ERR_INLINE_TESTS_DIR: &str = "crates/ra_syntax/test_data/parser/inline/err"; | 34 | const ERR_INLINE_TESTS_DIR: &str = "crates/syntax/test_data/parser/inline/err"; |
35 | 35 | ||
36 | const SYNTAX_KINDS: &str = "crates/parser/src/syntax_kind/generated.rs"; | 36 | const SYNTAX_KINDS: &str = "crates/parser/src/syntax_kind/generated.rs"; |
37 | const AST_NODES: &str = "crates/syntax/src/ast/generated/nodes.rs"; | 37 | const AST_NODES: &str = "crates/syntax/src/ast/generated/nodes.rs"; |
@@ -41,7 +41,7 @@ const ASSISTS_DIR: &str = "crates/assists/src/handlers"; | |||
41 | const ASSISTS_TESTS: &str = "crates/assists/src/tests/generated.rs"; | 41 | const ASSISTS_TESTS: &str = "crates/assists/src/tests/generated.rs"; |
42 | 42 | ||
43 | const REPOSITORY_URL: &str = "https://github.com/rust-lang/rust"; | 43 | const REPOSITORY_URL: &str = "https://github.com/rust-lang/rust"; |
44 | const UNSTABLE_FEATURE: &str = "crates/ra_ide/src/completion/unstable_feature_descriptor.rs"; | 44 | const UNSTABLE_FEATURE: &str = "crates/ide/src/completion/unstable_feature_descriptor.rs"; |
45 | const REPO_PATH: &str = "src/doc/unstable-book/src"; | 45 | const REPO_PATH: &str = "src/doc/unstable-book/src"; |
46 | 46 | ||
47 | #[derive(Debug, PartialEq, Eq, Clone, Copy)] | 47 | #[derive(Debug, PartialEq, Eq, Clone, Copy)] |
diff --git a/xtask/src/codegen/gen_unstable_future_descriptor.rs b/xtask/src/codegen/gen_unstable_future_descriptor.rs index 3f3beb591..f220f85d3 100644 --- a/xtask/src/codegen/gen_unstable_future_descriptor.rs +++ b/xtask/src/codegen/gen_unstable_future_descriptor.rs | |||
@@ -15,8 +15,7 @@ fn generate_descriptor(src_dir: PathBuf) -> Result<TokenStream> { | |||
15 | .filter_map(|e| e.ok()) | 15 | .filter_map(|e| e.ok()) |
16 | .filter(|entry| { | 16 | .filter(|entry| { |
17 | // Get all `.md ` files | 17 | // Get all `.md ` files |
18 | entry.file_type().is_file() | 18 | entry.file_type().is_file() && entry.path().extension().unwrap_or_default() == "md" |
19 | && entry.path().extension().unwrap_or_default() == "md" | ||
20 | }) | 19 | }) |
21 | .collect::<Vec<_>>(); | 20 | .collect::<Vec<_>>(); |
22 | 21 | ||