]> git.ipfire.org Git - thirdparty/vuejs/core.git/commitdiff
chore: code comment formatting (#1089) [ci skip]
authorHiiTea <luohaojing@gmail.com>
Fri, 1 May 2020 22:48:44 +0000 (06:48 +0800)
committerGitHub <noreply@github.com>
Fri, 1 May 2020 22:48:44 +0000 (18:48 -0400)
packages/compiler-core/src/parse.ts

index 14059a0cd9afff756b8b96a8a24ef36bdf1bfd63..ee0e07635b45aeb1950888b8a95a57fce34ab6d9 100644 (file)
@@ -56,9 +56,9 @@ export const defaultParserOptions: MergedParserOptions = {
 
 export const enum TextModes {
   //          | Elements | Entities | End sign              | Inside of
-  DATA, //    | ✔       | ✔       | End tags of ancestors |
-  RCDATA, //  | ✘       | ✔       | End tag of the parent | <textarea>
-  RAWTEXT, // | ✘       | ✘       | End tag of the parent | <style>,<script>
+  DATA, //    | ✔        | ✔        | End tags of ancestors |
+  RCDATA, //  | ✘        | ✔        | End tag of the parent | <textarea>
+  RAWTEXT, // | ✘        | ✘        | End tag of the parent | <style>,<script>
   CDATA,
   ATTRIBUTE_VALUE
 }