JavaScript: Remove a few deprecated classes.

This commit is contained in:
Max Schaefer
2019-01-08 13:16:58 +00:00
parent 5d1d94ebf1
commit 8a93c6aa65
2 changed files with 0 additions and 27 deletions

View File

@@ -44,15 +44,6 @@ class HtmlCommentStart extends @htmlcommentstart, HtmlLineComment { }
/** An HTML comment end token interpreted as a line comment. */
class HtmlCommentEnd extends @htmlcommentend, HtmlLineComment { }
/** DERECATED: Use `HtmlLineComment` instead. */
deprecated class HTMLComment = HtmlLineComment;
/** DERECATED: Use `HtmlCommentStart` instead. */
deprecated class HTMLCommentStart = HtmlCommentStart;
/** DERECATED: Use `HtmlCommentEnd` instead. */
deprecated class HTMLCommentEnd = HtmlCommentEnd;
/** A `//` comment. */
class SlashSlashComment extends @slashslashcomment, LineComment { }

View File

@@ -233,21 +233,3 @@ module HTML {
override Location getLocation() { xmllocations(this, result) }
}
}
/** DEPRECATED: Use `HTML::HtmlFile` instead. */
deprecated class HTMLFile = HTML::HtmlFile;
/** DEPRECATED: Use `HTML::Element` instead. */
deprecated class HTMLElement = HTML::Element;
/** DEPRECATED: Use `HTML::Attribute` instead. */
deprecated class HTMLAttribute = HTML::Attribute;
/** DEPRECATED: Use `HTML::DocumentElement` instead. */
deprecated class HtmlDocumentElement = HTML::DocumentElement;
/** DEPRECATED: Use `HTML::ScriptElement` instead. */
deprecated class HtmlScriptElement = HTML::ScriptElement;
/** DEPRECATED: Use `HTML::TextNode` instead. */
deprecated class HtmlText = HTML::TextNode;