2014-04-04 01:03:01 -05:00
|
|
|
// Copyright 2013-2014 The Rust Project Developers. See the COPYRIGHT
|
2013-12-22 13:23:04 -06:00
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2013-12-21 16:28:04 -06:00
|
|
|
use std::cell::RefCell;
|
2014-03-06 21:31:41 -06:00
|
|
|
use std::char;
|
2014-06-11 21:33:52 -05:00
|
|
|
use std::dynamic_lib::DynamicLibrary;
|
|
|
|
use std::gc::GC;
|
2014-05-05 16:33:55 -05:00
|
|
|
use std::io::{Command, TempDir};
|
2014-06-11 21:33:52 -05:00
|
|
|
use std::io;
|
2013-12-22 13:23:04 -06:00
|
|
|
use std::os;
|
|
|
|
use std::str;
|
2014-05-22 18:57:53 -05:00
|
|
|
use std::string::String;
|
2013-12-22 13:23:04 -06:00
|
|
|
|
2014-05-29 21:03:06 -05:00
|
|
|
use std::collections::{HashSet, HashMap};
|
2014-02-13 19:49:11 -06:00
|
|
|
use testing;
|
2014-08-11 12:33:58 -05:00
|
|
|
use rustc::back::write;
|
2014-05-06 06:38:01 -05:00
|
|
|
use rustc::driver::config;
|
2013-12-22 13:23:04 -06:00
|
|
|
use rustc::driver::driver;
|
|
|
|
use rustc::driver::session;
|
2014-04-01 17:04:42 -05:00
|
|
|
use syntax::ast;
|
|
|
|
use syntax::codemap::{CodeMap, dummy_spanned};
|
2013-12-22 13:23:04 -06:00
|
|
|
use syntax::diagnostic;
|
2014-04-01 17:04:42 -05:00
|
|
|
use syntax::parse::token;
|
2013-12-22 13:23:04 -06:00
|
|
|
|
|
|
|
use core;
|
|
|
|
use clean;
|
|
|
|
use clean::Clean;
|
|
|
|
use fold::DocFolder;
|
|
|
|
use html::markdown;
|
|
|
|
use passes;
|
|
|
|
use visit_ast::RustdocVisitor;
|
|
|
|
|
2014-05-05 20:56:44 -05:00
|
|
|
pub fn run(input: &str,
|
2014-05-22 18:57:53 -05:00
|
|
|
cfgs: Vec<String>,
|
2014-08-31 12:07:27 -05:00
|
|
|
libs: Vec<Path>,
|
2014-07-20 01:02:14 -05:00
|
|
|
externs: core::Externs,
|
2014-07-31 22:14:59 -05:00
|
|
|
mut test_args: Vec<String>,
|
|
|
|
crate_name: Option<String>)
|
2014-05-05 20:56:44 -05:00
|
|
|
-> int {
|
2014-01-27 07:58:40 -06:00
|
|
|
let input_path = Path::new(input);
|
|
|
|
let input = driver::FileInput(input_path.clone());
|
2013-12-22 13:23:04 -06:00
|
|
|
|
2014-05-06 06:38:01 -05:00
|
|
|
let sessopts = config::Options {
|
2014-03-09 07:24:58 -05:00
|
|
|
maybe_sysroot: Some(os::self_exe_path().unwrap().dir_path()),
|
|
|
|
addl_lib_search_paths: RefCell::new(libs.clone()),
|
2014-05-06 06:38:01 -05:00
|
|
|
crate_types: vec!(config::CrateTypeDylib),
|
2014-07-20 01:02:14 -05:00
|
|
|
externs: externs.clone(),
|
2014-05-06 06:38:01 -05:00
|
|
|
..config::basic_options().clone()
|
2013-12-22 13:23:04 -06:00
|
|
|
};
|
|
|
|
|
2014-03-17 02:55:41 -05:00
|
|
|
let codemap = CodeMap::new();
|
2014-07-01 11:39:41 -05:00
|
|
|
let diagnostic_handler = diagnostic::default_handler(diagnostic::Auto, None);
|
2013-12-22 13:23:04 -06:00
|
|
|
let span_diagnostic_handler =
|
2014-03-17 02:55:41 -05:00
|
|
|
diagnostic::mk_span_handler(diagnostic_handler, codemap);
|
2013-12-22 13:23:04 -06:00
|
|
|
|
2014-05-06 06:38:01 -05:00
|
|
|
let sess = session::build_session_(sessopts,
|
2014-05-02 18:15:12 -05:00
|
|
|
Some(input_path.clone()),
|
2013-12-22 13:23:04 -06:00
|
|
|
span_diagnostic_handler);
|
|
|
|
|
2014-05-06 06:38:01 -05:00
|
|
|
let mut cfg = config::build_configuration(&sess);
|
2014-04-01 17:04:42 -05:00
|
|
|
cfg.extend(cfgs.move_iter().map(|cfg_| {
|
2014-05-12 15:44:59 -05:00
|
|
|
let cfg_ = token::intern_and_get_ident(cfg_.as_slice());
|
2014-05-16 12:15:33 -05:00
|
|
|
box(GC) dummy_spanned(ast::MetaWord(cfg_))
|
2014-04-01 17:04:42 -05:00
|
|
|
}));
|
2014-03-05 08:36:01 -06:00
|
|
|
let krate = driver::phase_1_parse_input(&sess, cfg, &input);
|
2014-05-24 18:16:10 -05:00
|
|
|
let (krate, _) = driver::phase_2_configure_and_expand(&sess, krate,
|
2014-07-19 23:54:37 -05:00
|
|
|
"rustdoc-test", None)
|
2014-06-10 16:03:19 -05:00
|
|
|
.expect("phase_2_configure_and_expand aborted in rustdoc!");
|
2013-12-22 13:23:04 -06:00
|
|
|
|
2014-05-16 12:15:33 -05:00
|
|
|
let ctx = box(GC) core::DocContext {
|
2014-02-05 15:15:24 -06:00
|
|
|
krate: krate,
|
2014-03-05 08:36:01 -06:00
|
|
|
maybe_typed: core::NotTyped(sess),
|
2014-05-02 18:15:12 -05:00
|
|
|
src: input_path,
|
2014-05-09 15:52:17 -05:00
|
|
|
external_paths: RefCell::new(Some(HashMap::new())),
|
2014-05-03 04:08:58 -05:00
|
|
|
external_traits: RefCell::new(None),
|
|
|
|
external_typarams: RefCell::new(None),
|
2014-05-26 23:51:59 -05:00
|
|
|
inlined: RefCell::new(None),
|
2014-05-29 03:35:44 -05:00
|
|
|
populated_crate_impls: RefCell::new(HashSet::new()),
|
2013-12-22 13:23:04 -06:00
|
|
|
};
|
2014-04-28 22:36:08 -05:00
|
|
|
super::ctxtkey.replace(Some(ctx));
|
2013-12-22 13:23:04 -06:00
|
|
|
|
2014-05-16 12:15:33 -05:00
|
|
|
let mut v = RustdocVisitor::new(&*ctx, None);
|
2014-02-05 15:15:24 -06:00
|
|
|
v.visit(&ctx.krate);
|
2014-07-31 22:14:59 -05:00
|
|
|
let mut krate = v.clean();
|
|
|
|
match crate_name {
|
|
|
|
Some(name) => krate.name = name,
|
|
|
|
None => {}
|
|
|
|
}
|
2014-02-05 15:15:24 -06:00
|
|
|
let (krate, _) = passes::collapse_docs(krate);
|
2014-06-18 03:04:35 -05:00
|
|
|
let (krate, _) = passes::unindent_comments(krate);
|
2013-12-22 13:23:04 -06:00
|
|
|
|
2014-05-25 05:17:19 -05:00
|
|
|
let mut collector = Collector::new(krate.name.to_string(),
|
2014-03-05 17:28:08 -06:00
|
|
|
libs,
|
2014-07-20 01:02:14 -05:00
|
|
|
externs,
|
2014-03-05 17:28:08 -06:00
|
|
|
false);
|
2014-02-05 15:15:24 -06:00
|
|
|
collector.fold_crate(krate);
|
2013-12-22 13:23:04 -06:00
|
|
|
|
2014-07-14 15:54:10 -05:00
|
|
|
test_args.insert(0, "rustdoctest".to_string());
|
2013-12-22 13:23:04 -06:00
|
|
|
|
2014-05-13 18:44:05 -05:00
|
|
|
testing::test_main(test_args.as_slice(),
|
2014-03-05 17:28:08 -06:00
|
|
|
collector.tests.move_iter().collect());
|
2013-12-22 13:23:04 -06:00
|
|
|
0
|
|
|
|
}
|
|
|
|
|
2014-08-31 12:07:27 -05:00
|
|
|
fn runtest(test: &str, cratename: &str, libs: Vec<Path>, externs: core::Externs,
|
2014-07-20 01:02:14 -05:00
|
|
|
should_fail: bool, no_run: bool, as_test_harness: bool) {
|
2014-06-19 08:11:18 -05:00
|
|
|
// the test harness wants its own `main` & top level functions, so
|
|
|
|
// never wrap the test in `fn main() { ... }`
|
|
|
|
let test = maketest(test, Some(cratename), true, as_test_harness);
|
2014-05-25 05:17:19 -05:00
|
|
|
let input = driver::StrInput(test.to_string());
|
2013-12-22 13:23:04 -06:00
|
|
|
|
2014-05-06 06:38:01 -05:00
|
|
|
let sessopts = config::Options {
|
2014-03-09 07:24:58 -05:00
|
|
|
maybe_sysroot: Some(os::self_exe_path().unwrap().dir_path()),
|
|
|
|
addl_lib_search_paths: RefCell::new(libs),
|
2014-05-06 06:38:01 -05:00
|
|
|
crate_types: vec!(config::CrateTypeExecutable),
|
2014-08-11 12:33:58 -05:00
|
|
|
output_types: vec!(write::OutputTypeExe),
|
2014-05-02 19:19:19 -05:00
|
|
|
no_trans: no_run,
|
2014-07-20 01:02:14 -05:00
|
|
|
externs: externs,
|
2014-05-06 06:38:01 -05:00
|
|
|
cg: config::CodegenOptions {
|
2014-02-06 21:57:09 -06:00
|
|
|
prefer_dynamic: true,
|
2014-05-06 06:38:01 -05:00
|
|
|
.. config::basic_codegen_options()
|
2014-02-06 21:57:09 -06:00
|
|
|
},
|
2014-06-19 08:11:18 -05:00
|
|
|
test: as_test_harness,
|
2014-05-06 06:38:01 -05:00
|
|
|
..config::basic_options().clone()
|
2013-12-22 13:23:04 -06:00
|
|
|
};
|
|
|
|
|
2014-02-28 14:33:49 -06:00
|
|
|
// Shuffle around a few input and output handles here. We're going to pass
|
|
|
|
// an explicit handle into rustc to collect output messages, but we also
|
|
|
|
// want to catch the error message that rustc prints when it fails.
|
|
|
|
//
|
|
|
|
// We take our task-local stderr (likely set by the test runner), and move
|
|
|
|
// it into another task. This helper task then acts as a sink for both the
|
|
|
|
// stderr of this task and stderr of rustc itself, copying all the info onto
|
|
|
|
// the stderr channel we originally started with.
|
|
|
|
//
|
|
|
|
// The basic idea is to not use a default_handler() for rustc, and then also
|
|
|
|
// not print things by default to the actual stderr.
|
2014-03-09 16:58:32 -05:00
|
|
|
let (tx, rx) = channel();
|
|
|
|
let w1 = io::ChanWriter::new(tx);
|
2014-02-28 14:33:49 -06:00
|
|
|
let w2 = w1.clone();
|
2014-04-25 03:08:02 -05:00
|
|
|
let old = io::stdio::set_stderr(box w1);
|
2014-02-28 14:33:49 -06:00
|
|
|
spawn(proc() {
|
2014-03-09 16:58:32 -05:00
|
|
|
let mut p = io::ChanReader::new(rx);
|
2014-06-25 20:18:13 -05:00
|
|
|
let mut err = match old {
|
|
|
|
Some(old) => {
|
|
|
|
// Chop off the `Send` bound.
|
|
|
|
let old: Box<Writer> = old;
|
|
|
|
old
|
|
|
|
}
|
|
|
|
None => box io::stderr() as Box<Writer>,
|
|
|
|
};
|
2014-02-28 14:33:49 -06:00
|
|
|
io::util::copy(&mut p, &mut err).unwrap();
|
|
|
|
});
|
2014-07-01 11:39:41 -05:00
|
|
|
let emitter = diagnostic::EmitterWriter::new(box w2, None);
|
2014-02-28 14:33:49 -06:00
|
|
|
|
|
|
|
// Compile the code
|
2014-03-17 02:55:41 -05:00
|
|
|
let codemap = CodeMap::new();
|
2014-04-25 03:08:02 -05:00
|
|
|
let diagnostic_handler = diagnostic::mk_handler(box emitter);
|
2013-12-22 13:23:04 -06:00
|
|
|
let span_diagnostic_handler =
|
2014-03-17 02:55:41 -05:00
|
|
|
diagnostic::mk_span_handler(diagnostic_handler, codemap);
|
2013-12-22 13:23:04 -06:00
|
|
|
|
2014-05-06 06:38:01 -05:00
|
|
|
let sess = session::build_session_(sessopts,
|
2014-01-27 07:58:40 -06:00
|
|
|
None,
|
2013-12-22 13:23:04 -06:00
|
|
|
span_diagnostic_handler);
|
|
|
|
|
2014-08-30 07:12:47 -05:00
|
|
|
let outdir = TempDir::new("rustdoctest").ok().expect("rustdoc needs a tempdir");
|
2013-12-22 13:23:04 -06:00
|
|
|
let out = Some(outdir.path().clone());
|
2014-05-06 06:38:01 -05:00
|
|
|
let cfg = config::build_configuration(&sess);
|
2014-05-15 12:28:46 -05:00
|
|
|
let libdir = sess.target_filesearch().get_lib_path();
|
2014-07-19 23:54:37 -05:00
|
|
|
driver::compile_input(sess, cfg, &input, &out, &None, None);
|
2013-12-22 13:23:04 -06:00
|
|
|
|
2014-03-08 21:39:01 -06:00
|
|
|
if no_run { return }
|
|
|
|
|
2014-02-28 14:33:49 -06:00
|
|
|
// Run the code!
|
2014-05-15 12:28:46 -05:00
|
|
|
//
|
|
|
|
// We're careful to prepend the *target* dylib search path to the child's
|
|
|
|
// environment to ensure that the target loads the right libraries at
|
|
|
|
// runtime. It would be a sad day if the *host* libraries were loaded as a
|
|
|
|
// mistake.
|
2014-07-02 15:50:45 -05:00
|
|
|
let mut cmd = Command::new(outdir.path().join("rust_out"));
|
|
|
|
let newpath = {
|
2014-05-15 12:28:46 -05:00
|
|
|
let mut path = DynamicLibrary::search_path();
|
|
|
|
path.insert(0, libdir.clone());
|
2014-07-02 15:50:45 -05:00
|
|
|
DynamicLibrary::create_path(path.as_slice())
|
2014-05-15 12:28:46 -05:00
|
|
|
};
|
2014-07-02 15:50:45 -05:00
|
|
|
cmd.env(DynamicLibrary::envvar(), newpath.as_slice());
|
|
|
|
|
|
|
|
match cmd.output() {
|
2014-02-26 19:27:30 -06:00
|
|
|
Err(e) => fail!("couldn't run the test: {}{}", e,
|
|
|
|
if e.kind == io::PermissionDenied {
|
|
|
|
" - maybe your tempdir is mounted with noexec?"
|
|
|
|
} else { "" }),
|
2014-01-30 13:30:21 -06:00
|
|
|
Ok(out) => {
|
2014-02-15 01:30:10 -06:00
|
|
|
if should_fail && out.status.success() {
|
|
|
|
fail!("test executable succeeded when it should have failed");
|
|
|
|
} else if !should_fail && !out.status.success() {
|
2014-03-26 11:24:16 -05:00
|
|
|
fail!("test executable failed:\n{}",
|
|
|
|
str::from_utf8(out.error.as_slice()));
|
2013-12-22 13:23:04 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-19 08:11:18 -05:00
|
|
|
pub fn maketest(s: &str, cratename: Option<&str>, lints: bool, dont_insert_main: bool) -> String {
|
2014-06-06 11:12:18 -05:00
|
|
|
let mut prog = String::new();
|
|
|
|
if lints {
|
|
|
|
prog.push_str(r"
|
2014-04-17 17:59:07 -05:00
|
|
|
#![deny(warnings)]
|
2014-06-08 01:46:32 -05:00
|
|
|
#![allow(unused_variable, dead_assignment, unused_mut, unused_attribute, dead_code)]
|
2014-04-02 18:54:22 -05:00
|
|
|
");
|
2014-06-06 11:12:18 -05:00
|
|
|
}
|
2014-03-08 04:30:43 -06:00
|
|
|
|
2014-06-18 03:07:59 -05:00
|
|
|
// Don't inject `extern crate std` because it's already injected by the
|
|
|
|
// compiler.
|
|
|
|
if !s.contains("extern crate") && cratename != Some("std") {
|
2014-06-06 11:12:18 -05:00
|
|
|
match cratename {
|
|
|
|
Some(cratename) => {
|
|
|
|
if s.contains(cratename) {
|
|
|
|
prog.push_str(format!("extern crate {};\n",
|
|
|
|
cratename).as_slice());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
None => {}
|
2014-02-17 22:43:32 -06:00
|
|
|
}
|
2013-12-22 13:23:04 -06:00
|
|
|
}
|
2014-06-19 08:11:18 -05:00
|
|
|
if dont_insert_main || s.contains("fn main") {
|
2013-12-22 13:23:04 -06:00
|
|
|
prog.push_str(s);
|
|
|
|
} else {
|
2014-06-06 11:12:18 -05:00
|
|
|
prog.push_str("fn main() {\n ");
|
|
|
|
prog.push_str(s.replace("\n", "\n ").as_slice());
|
2013-12-22 13:23:04 -06:00
|
|
|
prog.push_str("\n}");
|
|
|
|
}
|
|
|
|
|
2014-05-12 15:44:59 -05:00
|
|
|
return prog
|
2013-12-22 13:23:04 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
pub struct Collector {
|
2014-03-28 12:27:24 -05:00
|
|
|
pub tests: Vec<testing::TestDescAndFn>,
|
2014-05-22 18:57:53 -05:00
|
|
|
names: Vec<String>,
|
2014-08-31 12:07:27 -05:00
|
|
|
libs: Vec<Path>,
|
2014-07-20 01:02:14 -05:00
|
|
|
externs: core::Externs,
|
2014-03-28 12:27:24 -05:00
|
|
|
cnt: uint,
|
|
|
|
use_headers: bool,
|
2014-05-22 18:57:53 -05:00
|
|
|
current_header: Option<String>,
|
|
|
|
cratename: String,
|
2013-12-22 13:23:04 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Collector {
|
2014-08-31 12:07:27 -05:00
|
|
|
pub fn new(cratename: String, libs: Vec<Path>, externs: core::Externs,
|
2014-06-06 01:01:01 -05:00
|
|
|
use_headers: bool) -> Collector {
|
2014-03-06 21:31:41 -06:00
|
|
|
Collector {
|
2014-03-05 17:28:08 -06:00
|
|
|
tests: Vec::new(),
|
|
|
|
names: Vec::new(),
|
2014-03-06 21:31:41 -06:00
|
|
|
libs: libs,
|
2014-07-20 01:02:14 -05:00
|
|
|
externs: externs,
|
2014-03-06 21:31:41 -06:00
|
|
|
cnt: 0,
|
|
|
|
use_headers: use_headers,
|
|
|
|
current_header: None,
|
2014-03-08 04:30:43 -06:00
|
|
|
cratename: cratename,
|
2014-03-06 21:31:41 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-19 08:11:18 -05:00
|
|
|
pub fn add_test(&mut self, test: String,
|
|
|
|
should_fail: bool, no_run: bool, should_ignore: bool, as_test_harness: bool) {
|
2014-03-06 21:31:41 -06:00
|
|
|
let name = if self.use_headers {
|
|
|
|
let s = self.current_header.as_ref().map(|s| s.as_slice()).unwrap_or("");
|
2014-05-27 22:44:58 -05:00
|
|
|
format!("{}_{}", s, self.cnt)
|
2014-03-06 21:31:41 -06:00
|
|
|
} else {
|
2014-05-27 22:44:58 -05:00
|
|
|
format!("{}_{}", self.names.connect("::"), self.cnt)
|
2014-03-06 21:31:41 -06:00
|
|
|
};
|
2013-12-22 13:23:04 -06:00
|
|
|
self.cnt += 1;
|
2014-03-09 07:24:58 -05:00
|
|
|
let libs = self.libs.clone();
|
2014-07-20 01:02:14 -05:00
|
|
|
let externs = self.externs.clone();
|
2014-05-25 05:10:11 -05:00
|
|
|
let cratename = self.cratename.to_string();
|
2013-12-28 17:54:56 -06:00
|
|
|
debug!("Creating test {}: {}", name, test);
|
2014-02-13 19:49:11 -06:00
|
|
|
self.tests.push(testing::TestDescAndFn {
|
|
|
|
desc: testing::TestDesc {
|
|
|
|
name: testing::DynTestName(name),
|
2014-04-04 01:03:01 -05:00
|
|
|
ignore: should_ignore,
|
2014-02-15 01:30:10 -06:00
|
|
|
should_fail: false, // compiler failures are test failures
|
2013-12-22 13:23:04 -06:00
|
|
|
},
|
2014-02-13 19:49:11 -06:00
|
|
|
testfn: testing::DynTestFn(proc() {
|
2014-05-12 15:44:59 -05:00
|
|
|
runtest(test.as_slice(),
|
2014-05-20 01:19:56 -05:00
|
|
|
cratename.as_slice(),
|
2014-05-12 15:44:59 -05:00
|
|
|
libs,
|
2014-07-20 01:02:14 -05:00
|
|
|
externs,
|
2014-05-12 15:44:59 -05:00
|
|
|
should_fail,
|
2014-06-19 08:11:18 -05:00
|
|
|
no_run,
|
|
|
|
as_test_harness);
|
2013-12-22 13:23:04 -06:00
|
|
|
}),
|
|
|
|
});
|
|
|
|
}
|
2014-03-06 21:31:41 -06:00
|
|
|
|
|
|
|
pub fn register_header(&mut self, name: &str, level: u32) {
|
|
|
|
if self.use_headers && level == 1 {
|
|
|
|
// we use these headings as test names, so it's good if
|
|
|
|
// they're valid identifiers.
|
|
|
|
let name = name.chars().enumerate().map(|(i, c)| {
|
|
|
|
if (i == 0 && char::is_XID_start(c)) ||
|
|
|
|
(i != 0 && char::is_XID_continue(c)) {
|
|
|
|
c
|
|
|
|
} else {
|
|
|
|
'_'
|
|
|
|
}
|
2014-05-22 18:57:53 -05:00
|
|
|
}).collect::<String>();
|
2014-03-06 21:31:41 -06:00
|
|
|
|
|
|
|
// new header => reset count.
|
|
|
|
self.cnt = 0;
|
|
|
|
self.current_header = Some(name);
|
|
|
|
}
|
|
|
|
}
|
2013-12-22 13:23:04 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
impl DocFolder for Collector {
|
|
|
|
fn fold_item(&mut self, item: clean::Item) -> Option<clean::Item> {
|
|
|
|
let pushed = match item.name {
|
|
|
|
Some(ref name) if name.len() == 0 => false,
|
2014-05-25 05:17:19 -05:00
|
|
|
Some(ref name) => { self.names.push(name.to_string()); true }
|
2013-12-22 13:23:04 -06:00
|
|
|
None => false
|
|
|
|
};
|
|
|
|
match item.doc_value() {
|
|
|
|
Some(doc) => {
|
|
|
|
self.cnt = 0;
|
2014-03-06 21:31:41 -06:00
|
|
|
markdown::find_testable_code(doc, &mut *self);
|
2013-12-22 13:23:04 -06:00
|
|
|
}
|
|
|
|
None => {}
|
|
|
|
}
|
|
|
|
let ret = self.fold_item_recur(item);
|
|
|
|
if pushed {
|
|
|
|
self.names.pop();
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
}
|