about summary refs log tree commit diff
path: root/src/libsyntax
diff options
context:
space:
mode:
authorTheo Belaire <theo.belaire@gmail.com>2015-04-14 13:53:23 -0400
committerTheo Belaire <theo.belaire@gmail.com>2015-04-14 13:53:23 -0400
commit9f481b85142362e725e6eb6b33a2eba062453c95 (patch)
tree5c80be94f6f8aa17f2c96baba610ff2279184edd /src/libsyntax
parent47551b57456c108c69f698b114606a275fb01643 (diff)
downloadrust-9f481b85142362e725e6eb6b33a2eba062453c95.tar.gz
rust-9f481b85142362e725e6eb6b33a2eba062453c95.zip
include_bytes! now registers the file included
This is a little bit tricky, since with include_str!, we know that we
are including utf-8 content, so it's safe to store the source as a
String in a FileMap. We don't know that for include_bytes!, but I don't
think we actually need to track the contents anyways, so I'm passing "".

new_filemap does check for the zero length content, and it should be
reasonable, howeven I'm not sure if it would be better to pass None
instead of Some(Rc::new("")) as the src component of a FileMap.

Fixes bug #24348
Diffstat (limited to 'src/libsyntax')
-rw-r--r--src/libsyntax/ext/source_util.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/libsyntax/ext/source_util.rs b/src/libsyntax/ext/source_util.rs
index a4c2d2dc030..d91659bafe4 100644
--- a/src/libsyntax/ext/source_util.rs
+++ b/src/libsyntax/ext/source_util.rs
@@ -184,6 +184,11 @@ pub fn expand_include_bytes(cx: &mut ExtCtxt, sp: Span, tts: &[ast::TokenTree])
             return DummyResult::expr(sp);
         }
         Ok(..) => {
+            // Add this input file to the code map to make it available as
+            // dependency information, but don't enter it's contents
+            let filename = format!("{}", file.display());
+            cx.codemap().new_filemap(filename, "".to_string());
+
             base::MacEager::expr(cx.expr_lit(sp, ast::LitBinary(Rc::new(bytes))))
         }
     }