2019-07-04 15:05:17 -05:00
|
|
|
use rustc_hash::{FxHashMap, FxHashSet};
|
2019-03-23 11:34:49 -05:00
|
|
|
|
2019-07-18 10:49:32 -05:00
|
|
|
use hir::{Mutability, Ty};
|
2019-01-26 02:20:30 -06:00
|
|
|
use ra_db::SourceDatabase;
|
2019-05-23 13:18:22 -05:00
|
|
|
use ra_prof::profile;
|
2019-07-04 15:05:17 -05:00
|
|
|
use ra_syntax::{
|
2019-07-19 07:53:16 -05:00
|
|
|
ast::{self, NameOwner},
|
|
|
|
AstNode, Direction, SmolStr, SyntaxElement, SyntaxKind,
|
|
|
|
SyntaxKind::*,
|
|
|
|
TextRange, T,
|
2019-07-04 15:05:17 -05:00
|
|
|
};
|
2019-01-08 13:33:36 -06:00
|
|
|
|
2019-07-19 07:53:16 -05:00
|
|
|
use crate::{
|
|
|
|
db::RootDatabase,
|
|
|
|
name_ref_kind::{classify_name_ref, NameRefKind::*},
|
|
|
|
FileId,
|
|
|
|
};
|
2019-03-23 11:34:49 -05:00
|
|
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
pub struct HighlightedRange {
|
|
|
|
pub range: TextRange,
|
|
|
|
pub tag: &'static str,
|
2019-05-25 09:23:58 -05:00
|
|
|
pub binding_hash: Option<u64>,
|
2019-03-23 11:34:49 -05:00
|
|
|
}
|
2019-01-08 13:33:36 -06:00
|
|
|
|
2019-05-21 06:04:54 -05:00
|
|
|
fn is_control_keyword(kind: SyntaxKind) -> bool {
|
|
|
|
match kind {
|
2019-05-21 08:28:10 -05:00
|
|
|
T![for]
|
|
|
|
| T![loop]
|
|
|
|
| T![while]
|
|
|
|
| T![continue]
|
|
|
|
| T![break]
|
|
|
|
| T![if]
|
|
|
|
| T![else]
|
|
|
|
| T![match]
|
|
|
|
| T![return] => true,
|
2019-05-21 06:04:54 -05:00
|
|
|
_ => false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-19 07:53:16 -05:00
|
|
|
fn is_variable_mutable(
|
|
|
|
db: &RootDatabase,
|
|
|
|
analyzer: &hir::SourceAnalyzer,
|
|
|
|
pat: ast::BindPat,
|
|
|
|
) -> bool {
|
|
|
|
if pat.is_mutable() {
|
|
|
|
return true;
|
|
|
|
}
|
2019-07-18 10:49:32 -05:00
|
|
|
|
2019-07-19 07:53:16 -05:00
|
|
|
let ty = analyzer.type_of_pat(db, &pat.into()).unwrap_or(Ty::Unknown);
|
|
|
|
if let Some((_, mutability)) = ty.as_reference() {
|
|
|
|
match mutability {
|
|
|
|
Mutability::Shared => false,
|
|
|
|
Mutability::Mut => true,
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
false
|
|
|
|
}
|
2019-07-18 10:49:32 -05:00
|
|
|
}
|
|
|
|
|
2019-01-15 12:17:10 -06:00
|
|
|
pub(crate) fn highlight(db: &RootDatabase, file_id: FileId) -> Vec<HighlightedRange> {
|
2019-05-23 13:18:22 -05:00
|
|
|
let _p = profile("highlight");
|
2019-07-12 11:41:13 -05:00
|
|
|
let parse = db.parse(file_id);
|
2019-07-19 04:56:47 -05:00
|
|
|
let root = parse.tree().syntax().clone();
|
2019-03-23 11:34:49 -05:00
|
|
|
|
2019-05-25 09:23:58 -05:00
|
|
|
fn calc_binding_hash(file_id: FileId, text: &SmolStr, shadow_count: u32) -> u64 {
|
|
|
|
fn hash<T: std::hash::Hash + std::fmt::Debug>(x: T) -> u64 {
|
|
|
|
use std::{collections::hash_map::DefaultHasher, hash::Hasher};
|
|
|
|
|
|
|
|
let mut hasher = DefaultHasher::new();
|
|
|
|
x.hash(&mut hasher);
|
|
|
|
hasher.finish()
|
|
|
|
}
|
2019-05-23 12:42:42 -05:00
|
|
|
|
2019-05-25 09:23:58 -05:00
|
|
|
hash((file_id, text, shadow_count))
|
2019-05-23 12:42:42 -05:00
|
|
|
}
|
|
|
|
|
2019-03-23 11:34:49 -05:00
|
|
|
// Visited nodes to handle highlighting priorities
|
2019-07-19 04:56:47 -05:00
|
|
|
// FIXME: retain only ranges here
|
2019-03-30 05:25:53 -05:00
|
|
|
let mut highlighted: FxHashSet<SyntaxElement> = FxHashSet::default();
|
2019-05-25 05:56:52 -05:00
|
|
|
let mut bindings_shadow_count: FxHashMap<SmolStr, u32> = FxHashMap::default();
|
|
|
|
|
2019-03-23 11:34:49 -05:00
|
|
|
let mut res = Vec::new();
|
2019-07-12 11:41:13 -05:00
|
|
|
for node in root.descendants_with_tokens() {
|
2019-03-23 11:34:49 -05:00
|
|
|
if highlighted.contains(&node) {
|
|
|
|
continue;
|
|
|
|
}
|
2019-05-25 09:23:58 -05:00
|
|
|
let mut binding_hash = None;
|
|
|
|
let tag = match node.kind() {
|
2019-07-19 07:53:16 -05:00
|
|
|
FN_DEF => {
|
|
|
|
bindings_shadow_count.clear();
|
|
|
|
continue;
|
|
|
|
}
|
2019-05-25 09:23:58 -05:00
|
|
|
COMMENT => "comment",
|
|
|
|
STRING | RAW_STRING | RAW_BYTE_STRING | BYTE_STRING => "string",
|
|
|
|
ATTR => "attribute",
|
2019-05-23 05:26:38 -05:00
|
|
|
NAME_REF => {
|
2019-07-19 04:56:47 -05:00
|
|
|
if let Some(name_ref) = node.as_node().cloned().and_then(ast::NameRef::cast) {
|
2019-05-30 08:10:07 -05:00
|
|
|
// FIXME: try to reuse the SourceAnalyzers
|
|
|
|
let analyzer = hir::SourceAnalyzer::new(db, file_id, name_ref.syntax(), None);
|
2019-07-19 04:56:47 -05:00
|
|
|
match classify_name_ref(db, &analyzer, &name_ref) {
|
2019-05-30 08:10:07 -05:00
|
|
|
Some(Method(_)) => "function",
|
|
|
|
Some(Macro(_)) => "macro",
|
|
|
|
Some(FieldAccess(_)) => "field",
|
2019-09-14 09:26:03 -05:00
|
|
|
Some(AssocItem(hir::AssocItem::Function(_))) => "function",
|
|
|
|
Some(AssocItem(hir::AssocItem::Const(_))) => "constant",
|
|
|
|
Some(AssocItem(hir::AssocItem::TypeAlias(_))) => "type",
|
2019-07-19 07:53:16 -05:00
|
|
|
Some(Def(hir::ModuleDef::Module(_))) => "module",
|
|
|
|
Some(Def(hir::ModuleDef::Function(_))) => "function",
|
2019-09-12 16:34:52 -05:00
|
|
|
Some(Def(hir::ModuleDef::Adt(_))) => "type",
|
2019-07-19 07:53:16 -05:00
|
|
|
Some(Def(hir::ModuleDef::EnumVariant(_))) => "constant",
|
|
|
|
Some(Def(hir::ModuleDef::Const(_))) => "constant",
|
|
|
|
Some(Def(hir::ModuleDef::Static(_))) => "constant",
|
|
|
|
Some(Def(hir::ModuleDef::Trait(_))) => "type",
|
|
|
|
Some(Def(hir::ModuleDef::TypeAlias(_))) => "type",
|
|
|
|
Some(Def(hir::ModuleDef::BuiltinType(_))) => "type",
|
2019-05-30 08:10:07 -05:00
|
|
|
Some(SelfType(_)) => "type",
|
|
|
|
Some(Pat(ptr)) => {
|
2019-07-19 07:53:16 -05:00
|
|
|
let pat = ptr.to_node(&root);
|
|
|
|
if let Some(name) = pat.name() {
|
|
|
|
let text = name.text();
|
2019-05-30 08:10:07 -05:00
|
|
|
let shadow_count =
|
|
|
|
bindings_shadow_count.entry(text.clone()).or_default();
|
2019-07-19 07:53:16 -05:00
|
|
|
binding_hash =
|
|
|
|
Some(calc_binding_hash(file_id, &text, *shadow_count))
|
|
|
|
}
|
2019-05-25 09:23:58 -05:00
|
|
|
|
2019-07-19 04:56:47 -05:00
|
|
|
if is_variable_mutable(db, &analyzer, ptr.to_node(&root)) {
|
2019-07-18 10:49:32 -05:00
|
|
|
"variable.mut"
|
|
|
|
} else {
|
|
|
|
"variable"
|
|
|
|
}
|
2019-05-26 04:56:31 -05:00
|
|
|
}
|
2019-05-30 08:10:07 -05:00
|
|
|
Some(SelfParam(_)) => "type",
|
|
|
|
Some(GenericParam(_)) => "type",
|
|
|
|
None => "text",
|
2019-05-23 05:26:38 -05:00
|
|
|
}
|
|
|
|
} else {
|
2019-05-25 09:23:58 -05:00
|
|
|
"text"
|
2019-05-23 05:26:38 -05:00
|
|
|
}
|
|
|
|
}
|
2019-05-23 12:42:42 -05:00
|
|
|
NAME => {
|
2019-07-19 04:56:47 -05:00
|
|
|
if let Some(name) = node.as_node().cloned().and_then(ast::Name::cast) {
|
2019-07-18 10:49:32 -05:00
|
|
|
let analyzer = hir::SourceAnalyzer::new(db, file_id, name.syntax(), None);
|
2019-07-19 07:53:16 -05:00
|
|
|
if let Some(pat) = name.syntax().ancestors().find_map(ast::BindPat::cast) {
|
|
|
|
if let Some(name) = pat.name() {
|
|
|
|
let text = name.text();
|
2019-05-26 04:56:31 -05:00
|
|
|
let shadow_count =
|
2019-07-19 07:53:16 -05:00
|
|
|
bindings_shadow_count.entry(text.clone()).or_default();
|
2019-05-25 09:23:58 -05:00
|
|
|
*shadow_count += 1;
|
2019-07-19 07:53:16 -05:00
|
|
|
binding_hash = Some(calc_binding_hash(file_id, &text, *shadow_count))
|
|
|
|
}
|
2019-07-18 10:49:32 -05:00
|
|
|
|
|
|
|
if is_variable_mutable(db, &analyzer, pat) {
|
|
|
|
"variable.mut"
|
|
|
|
} else {
|
|
|
|
"variable"
|
|
|
|
}
|
2019-05-25 09:23:58 -05:00
|
|
|
} else {
|
2019-08-21 17:39:18 -05:00
|
|
|
name.syntax()
|
|
|
|
.parent()
|
|
|
|
.map(|x| match x.kind() {
|
|
|
|
TYPE_PARAM | STRUCT_DEF | ENUM_DEF | TRAIT_DEF | TYPE_ALIAS_DEF => {
|
|
|
|
"type"
|
|
|
|
}
|
2019-08-23 07:55:21 -05:00
|
|
|
RECORD_FIELD_DEF => "field",
|
2019-08-21 17:39:18 -05:00
|
|
|
_ => "function",
|
|
|
|
})
|
|
|
|
.unwrap_or("function")
|
2019-05-25 09:23:58 -05:00
|
|
|
}
|
2019-05-23 12:42:42 -05:00
|
|
|
} else {
|
2019-05-25 09:23:58 -05:00
|
|
|
"text"
|
2019-05-23 12:42:42 -05:00
|
|
|
}
|
|
|
|
}
|
2019-05-25 09:23:58 -05:00
|
|
|
INT_NUMBER | FLOAT_NUMBER | CHAR | BYTE => "literal",
|
|
|
|
LIFETIME => "parameter",
|
|
|
|
T![unsafe] => "keyword.unsafe",
|
|
|
|
k if is_control_keyword(k) => "keyword.control",
|
|
|
|
k if k.is_keyword() => "keyword",
|
2019-03-23 11:34:49 -05:00
|
|
|
_ => {
|
2019-07-19 04:56:47 -05:00
|
|
|
if let Some(macro_call) = node.as_node().cloned().and_then(ast::MacroCall::cast) {
|
2019-03-23 11:34:49 -05:00
|
|
|
if let Some(path) = macro_call.path() {
|
|
|
|
if let Some(segment) = path.segment() {
|
|
|
|
if let Some(name_ref) = segment.name_ref() {
|
2019-07-19 04:56:47 -05:00
|
|
|
highlighted.insert(name_ref.syntax().clone().into());
|
2019-07-20 04:58:27 -05:00
|
|
|
let range_start = name_ref.syntax().text_range().start();
|
|
|
|
let mut range_end = name_ref.syntax().text_range().end();
|
2019-03-30 05:25:53 -05:00
|
|
|
for sibling in path.syntax().siblings_with_tokens(Direction::Next) {
|
2019-03-23 11:34:49 -05:00
|
|
|
match sibling.kind() {
|
2019-07-20 04:58:27 -05:00
|
|
|
T![!] | IDENT => range_end = sibling.text_range().end(),
|
2019-03-23 11:34:49 -05:00
|
|
|
_ => (),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
res.push(HighlightedRange {
|
|
|
|
range: TextRange::from_to(range_start, range_end),
|
|
|
|
tag: "macro",
|
2019-05-25 09:23:58 -05:00
|
|
|
binding_hash: None,
|
2019-03-23 11:34:49 -05:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
};
|
2019-07-20 04:58:27 -05:00
|
|
|
res.push(HighlightedRange { range: node.text_range(), tag, binding_hash })
|
2019-03-23 11:34:49 -05:00
|
|
|
}
|
|
|
|
res
|
|
|
|
}
|
|
|
|
|
2019-05-25 09:23:58 -05:00
|
|
|
pub(crate) fn highlight_as_html(db: &RootDatabase, file_id: FileId, rainbow: bool) -> String {
|
2019-07-12 11:41:13 -05:00
|
|
|
let parse = db.parse(file_id);
|
2019-05-25 05:42:34 -05:00
|
|
|
|
2019-05-25 09:23:58 -05:00
|
|
|
fn rainbowify(seed: u64) -> String {
|
|
|
|
use rand::prelude::*;
|
|
|
|
let mut rng = SmallRng::seed_from_u64(seed);
|
2019-05-26 04:56:31 -05:00
|
|
|
format!(
|
|
|
|
"hsl({h},{s}%,{l}%)",
|
2019-05-25 09:23:58 -05:00
|
|
|
h = rng.gen_range::<u16, _, _>(0, 361),
|
|
|
|
s = rng.gen_range::<u16, _, _>(42, 99),
|
|
|
|
l = rng.gen_range::<u16, _, _>(40, 91),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2019-05-25 05:42:34 -05:00
|
|
|
let mut ranges = highlight(db, file_id);
|
|
|
|
ranges.sort_by_key(|it| it.range.start());
|
|
|
|
// quick non-optimal heuristic to intersect token ranges and highlighted ranges
|
|
|
|
let mut frontier = 0;
|
|
|
|
let mut could_intersect: Vec<&HighlightedRange> = Vec::new();
|
|
|
|
|
|
|
|
let mut buf = String::new();
|
|
|
|
buf.push_str(&STYLE);
|
|
|
|
buf.push_str("<pre><code>");
|
2019-07-19 11:05:34 -05:00
|
|
|
let tokens = parse.tree().syntax().descendants_with_tokens().filter_map(|it| it.into_token());
|
2019-05-25 05:42:34 -05:00
|
|
|
for token in tokens {
|
2019-07-20 04:58:27 -05:00
|
|
|
could_intersect.retain(|it| token.text_range().start() <= it.range.end());
|
2019-05-25 05:42:34 -05:00
|
|
|
while let Some(r) = ranges.get(frontier) {
|
2019-07-20 04:58:27 -05:00
|
|
|
if r.range.start() <= token.text_range().end() {
|
2019-05-25 05:42:34 -05:00
|
|
|
could_intersect.push(r);
|
|
|
|
frontier += 1;
|
|
|
|
} else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
let text = html_escape(&token.text());
|
2019-05-25 09:23:58 -05:00
|
|
|
let ranges = could_intersect
|
2019-05-25 05:42:34 -05:00
|
|
|
.iter()
|
2019-07-20 04:58:27 -05:00
|
|
|
.filter(|it| token.text_range().is_subrange(&it.range))
|
2019-05-25 05:42:34 -05:00
|
|
|
.collect::<Vec<_>>();
|
2019-05-25 09:23:58 -05:00
|
|
|
if ranges.is_empty() {
|
2019-05-25 05:42:34 -05:00
|
|
|
buf.push_str(&text);
|
|
|
|
} else {
|
2019-05-25 09:23:58 -05:00
|
|
|
let classes = ranges.iter().map(|x| x.tag).collect::<Vec<_>>().join(" ");
|
|
|
|
let binding_hash = ranges.first().and_then(|x| x.binding_hash);
|
|
|
|
let color = match (rainbow, binding_hash) {
|
2019-05-26 04:56:31 -05:00
|
|
|
(true, Some(hash)) => format!(
|
|
|
|
" data-binding-hash=\"{}\" style=\"color: {};\"",
|
|
|
|
hash,
|
|
|
|
rainbowify(hash)
|
|
|
|
),
|
|
|
|
_ => "".into(),
|
2019-05-25 09:23:58 -05:00
|
|
|
};
|
|
|
|
buf.push_str(&format!("<span class=\"{}\"{}>{}</span>", classes, color, text));
|
2019-05-25 05:42:34 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
buf.push_str("</code></pre>");
|
|
|
|
buf
|
|
|
|
}
|
|
|
|
|
|
|
|
//FIXME: like, real html escaping
|
|
|
|
fn html_escape(text: &str) -> String {
|
|
|
|
text.replace("<", "<").replace(">", ">")
|
|
|
|
}
|
|
|
|
|
|
|
|
const STYLE: &str = "
|
|
|
|
<style>
|
2019-07-18 10:49:32 -05:00
|
|
|
body { margin: 0; }
|
|
|
|
pre { color: #DCDCCC; background: #3F3F3F; font-size: 22px; padding: 0.4em; }
|
|
|
|
|
|
|
|
.comment { color: #7F9F7F; }
|
|
|
|
.string { color: #CC9393; }
|
|
|
|
.function { color: #93E0E3; }
|
|
|
|
.parameter { color: #94BFF3; }
|
|
|
|
.builtin { color: #DD6718; }
|
|
|
|
.text { color: #DCDCCC; }
|
2019-07-18 11:57:13 -05:00
|
|
|
.attribute { color: #94BFF3; }
|
|
|
|
.literal { color: #BFEBBF; }
|
|
|
|
.macro { color: #94BFF3; }
|
|
|
|
.variable { color: #DCDCCC; }
|
|
|
|
.variable\\.mut { color: #DCDCCC; text-decoration: underline; }
|
2019-07-18 10:49:32 -05:00
|
|
|
|
|
|
|
.keyword { color: #F0DFAF; }
|
2019-07-18 11:57:13 -05:00
|
|
|
.keyword\\.unsafe { color: #DFAF8F; }
|
|
|
|
.keyword\\.control { color: #F0DFAF; font-weight: bold; }
|
2019-05-25 05:42:34 -05:00
|
|
|
</style>
|
|
|
|
";
|
|
|
|
|
2019-03-23 11:34:49 -05:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use crate::mock_analysis::single_file;
|
2019-07-04 15:05:17 -05:00
|
|
|
use test_utils::{assert_eq_text, project_dir, read_text};
|
2019-03-23 11:34:49 -05:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_highlighting() {
|
|
|
|
let (analysis, file_id) = single_file(
|
|
|
|
r#"
|
2019-05-23 05:26:38 -05:00
|
|
|
#[derive(Clone, Debug)]
|
|
|
|
struct Foo {
|
|
|
|
pub x: i32,
|
|
|
|
pub y: i32,
|
|
|
|
}
|
|
|
|
|
|
|
|
fn foo<T>() -> T {
|
|
|
|
unimplemented!();
|
2019-05-28 13:27:54 -05:00
|
|
|
foo::<i32>();
|
2019-05-23 05:26:38 -05:00
|
|
|
}
|
|
|
|
|
2019-03-23 11:34:49 -05:00
|
|
|
// comment
|
2019-05-25 05:42:34 -05:00
|
|
|
fn main() {
|
2019-03-23 11:34:49 -05:00
|
|
|
println!("Hello, {}!", 92);
|
2019-05-23 05:26:38 -05:00
|
|
|
|
|
|
|
let mut vec = Vec::new();
|
2019-05-25 05:42:34 -05:00
|
|
|
if true {
|
|
|
|
vec.push(Foo { x: 0, y: 1 });
|
|
|
|
}
|
2019-05-23 05:26:38 -05:00
|
|
|
unsafe { vec.set_len(0); }
|
2019-07-18 10:49:32 -05:00
|
|
|
|
|
|
|
let mut x = 42;
|
|
|
|
let y = &mut x;
|
|
|
|
let z = &y;
|
|
|
|
|
|
|
|
y;
|
2019-05-25 05:42:34 -05:00
|
|
|
}
|
2019-05-26 04:56:31 -05:00
|
|
|
"#
|
|
|
|
.trim(),
|
2019-03-23 11:34:49 -05:00
|
|
|
);
|
2019-05-25 05:42:34 -05:00
|
|
|
let dst_file = project_dir().join("crates/ra_ide_api/src/snapshots/highlighting.html");
|
2019-07-18 10:49:32 -05:00
|
|
|
let actual_html = &analysis.highlight_as_html(file_id, false).unwrap();
|
2019-05-25 05:42:34 -05:00
|
|
|
let expected_html = &read_text(&dst_file);
|
2019-05-25 09:23:58 -05:00
|
|
|
std::fs::write(dst_file, &actual_html).unwrap();
|
2019-05-25 05:42:34 -05:00
|
|
|
assert_eq_text!(expected_html, actual_html);
|
2019-03-23 11:34:49 -05:00
|
|
|
}
|
2019-05-23 12:42:42 -05:00
|
|
|
|
|
|
|
#[test]
|
2019-05-25 05:56:52 -05:00
|
|
|
fn test_rainbow_highlighting() {
|
2019-05-23 12:42:42 -05:00
|
|
|
let (analysis, file_id) = single_file(
|
|
|
|
r#"
|
|
|
|
fn main() {
|
|
|
|
let hello = "hello";
|
|
|
|
let x = hello.to_string();
|
|
|
|
let y = hello.to_string();
|
2019-05-25 05:56:52 -05:00
|
|
|
|
|
|
|
let x = "other color please!";
|
|
|
|
let y = x.to_string();
|
2019-05-25 09:23:58 -05:00
|
|
|
}
|
2019-07-19 07:53:16 -05:00
|
|
|
|
|
|
|
fn bar() {
|
|
|
|
let mut hello = "hello";
|
|
|
|
}
|
2019-05-26 04:56:31 -05:00
|
|
|
"#
|
|
|
|
.trim(),
|
2019-05-23 12:42:42 -05:00
|
|
|
);
|
2019-05-26 04:56:31 -05:00
|
|
|
let dst_file =
|
|
|
|
project_dir().join("crates/ra_ide_api/src/snapshots/rainbow_highlighting.html");
|
|
|
|
let actual_html = &analysis.highlight_as_html(file_id, true).unwrap();
|
2019-05-25 09:23:58 -05:00
|
|
|
let expected_html = &read_text(&dst_file);
|
|
|
|
std::fs::write(dst_file, &actual_html).unwrap();
|
|
|
|
assert_eq_text!(expected_html, actual_html);
|
2019-05-23 12:42:42 -05:00
|
|
|
}
|
2019-01-08 13:33:36 -06:00
|
|
|
}
|