Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tokenizer bug with docblocks in CSS #2219

Closed
jrfnl opened this issue Nov 4, 2018 · 14 comments
Closed

Tokenizer bug with docblocks in CSS #2219

jrfnl opened this issue Nov 4, 2018 · 14 comments

Comments

@jrfnl
Copy link
Contributor

jrfnl commented Nov 4, 2018

This is a weird one and I have not been able to distill it down to a small code sample to easily reproduce the issue, however, with the complete test case file through which I came across the bug(s), I've been able to reproduce it consistently.

The problem is with the comment_closer not always being set correctly in the token array of the T_DOC_COMMENT_OPEN_TAG.

  • For the first docblock comment - line 71 to 74 -, all is fine.
  • The second docblock comment - line 113 to 115, token 158 to 167 -, gets an incorrect comment_closer. It is set at token 173, which is the comment closer for the next multi-line /* */ comment.
  • The third docblock comment - line 139 to 156, token 193 to 276 -, also gets an incorrect comment_closer. In this case, it is set at token 283, which is the T_CLOSE_TAG for the document.
Code for `testfile.css`
/* @codingStandardsChangeSetting WordPress.Utils.I18nTextDomainFixer old_text_domain twentyeleven */
/* @codingStandardsChangeSetting WordPress.Utils.I18nTextDomainFixer new_text_domain twentyten */

/*
Theme Name: Correct text-domain.
Theme URI: https://wordpress.org/themes/twentyten/
Description: The 2010 theme for WordPress is stylish, customizable, simple, and readable -- make it yours with a custom menu, header image, and background. Twenty Ten supports six widgetized areas (two in the sidebar, four in the footer) and featured images (thumbnails for gallery posts and custom header images for posts and pages). It includes stylesheets for print and the admin Visual Editor, special styles for posts in the "Asides" and "Gallery" categories, and has an optional one-column page template that removes the sidebar.
Author: the WordPress team
Author URI: https://wordpress.org/
Version: 2.5
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: blog, two-columns, custom-header, custom-background, threaded-comments, sticky-post, translation-ready, microformats, rtl-language-support, editor-style, custom-menu, flexible-header, featured-images, footer-widgets, featured-image-header
Text Domain: twentyten
*/

/* @codingStandardsChangeSetting WordPress.Utils.I18nTextDomainFixer old_text_domain _s */
/* @codingStandardsChangeSetting WordPress.Utils.I18nTextDomainFixer new_text_domain something-else */

/*!
Theme Name: Text domain which should be fixed and checking that consequtive comments don't get mixed up.
Theme URI: https://underscores.me/
Author: Automattic
Author URI: https://automattic.com/
Description: Hi. I'm a starter theme called <code>_s</code>, or <em>underscores</em>, if you like. I'm a theme meant for hacking so don't use me as a <em>Parent Theme</em>. Instead try turning me into the next, most awesome, WordPress theme out there. That's what I'm here for.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: _s
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

_s is based on Underscores https://underscores.me/, (C) 2012-2017 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
/* normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
	line-height: 1.15; /* 1 */
	-webkit-text-size-adjust: 100%; /* 2 */
}

/* @codingStandardsChangeSetting WordPress.Utils.I18nTextDomainFixer new_text_domain twentyseventeen */

/*
Theme Name: Missing text domain.
Theme URI: https://wordpress.org/themes/twentyseventeen/
Author: the WordPress team
Author URI: https://wordpress.org/
Description: Twenty Seventeen brings your site to life with header video and immersive featured images. With a focus on business sites, it features multiple sections on the front page as well as widgets, navigation and social menus, a logo, and more. Personalize its asymmetrical grid with a custom color scheme and showcase your multimedia content with post formats. Our default theme for 2017 works great in many languages, for any abilities, and on any device.
Version: 1.6
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: one-column, two-columns, right-sidebar, flexible-header, accessibility-ready, custom-colors, custom-header, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, post-formats, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

/*
 * Theme Name : Missing text domain, different comment format.
 * Theme URI  : https://wordpress.org/themes/twentyseventeen/
 * Author     : the WordPress team
 * Author URI : https://wordpress.org/
 * Description: Twenty Seventeen brings your site to life with header video and immersive featured images. With a focus on business sites, it features multiple sections on the front page as well as widgets, navigation and social menus, a logo, and more. Personalize its asymmetrical grid with a custom color scheme and showcase your multimedia content with post formats. Our default theme for 2017 works great in many languages, for any abilities, and on any device.
 * Version    : 1.6
 * License    : GNU General Public License v2 or later
 * License URI: http://www.gnu.org/licenses/gpl-2.0.html
 * Tags       : one-column, two-columns, right-sidebar, flexible-header, accessibility-ready, custom-colors, custom-header, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, post-formats, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready
 *
 * This theme, like WordPress, is licensed under the GPL.
 * Use it to make something cool, have fun, and share what you've learned with others.
 */

/**
 * Theme Name: Not the theme header (not enough headers found.
 */

/*
Theme Name: Missing text domain. Minimum headers.
Theme URI: http://protected
Description: http://thisshouldntbeaurl
*/

/*
  Theme Name:       Missing text domain, different comment format, additional non-standard headers.
  Theme URI:        https://protected
  Author:           Lacy Morrow
  Author URI:       http://protected
  Description:      A Ghost-like WordPress theme. Casper (for WordPress) is a simple yet beautiful theme for bloggers. Inspired by the Ghost blogging platform, Casper is a WordPress port of the default theme by the same name. The goal of this project is to emulate the gorgeous theme while taking advantage of features exclusive to the WordPress framework. There are plenty of customization options included, accessible through the WordPress Customizer. Already included are hooks to serve responsive images appropriately and media queries to provide a fast and seamless experience from desktop to mobile. For questions, support, development instructions, or to contribute to the project visit [https://github.com/lacymorrow/casper]
  Version:          1.1.5
  License:          GNU General Public License v2.0
  License URI:      http://www.gnu.org/licenses/gpl-2.0.html
  Domain Path:      /languages/
  Tags:             responsive-layout, black, white, one-column, fluid-layout, custom-header, custom-menu, editor-style
  GitHub Theme URI: https://github.com/protected
  GitHub Branch:    master
  Casper is based on Underscores http://underscores.me/, (C) 2012-2014 Automattic, Inc.
*/

/**
 * Theme Name: Missing text domain. Docblock format.
 * Theme URI: https://github.com/WordPress/twentynineteen
 * Author: the WordPress team
 * Author URI: https://wordpress.org/
 * Description: A new Gutenberg-ready theme.
 * Requires at least: WordPress 4.9.6
 * Version: 1.0
 * License: GNU General Public License v2 or later
 * License URI: LICENSE
 * Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
 * This theme, like WordPress, is licensed under the GPL.
 * Use it to make something cool, have fun, and share what you've learned with others.
 * Twenty Nineteen is based on Underscores https://underscores.me/, (C) 2012-2018 Automattic, Inc.
 * Underscores is distributed under the terms of the GNU GPL v2 or later.
 * Normalizing styles have been helped along thanks to the fine work of
 * Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
 */

/* @codingStandardsChangeSetting WordPress.Utils.I18nTextDomainFixer old_text_domain false */
/* @codingStandardsChangeSetting WordPress.Utils.I18nTextDomainFixer new_text_domain false */

Short form debug output
0 :: L001 :: C1 :: T_OPEN_TAG :: (0) :: 
1 :: L001 :: C1 :: T_COMMENT :: (100) :: /* @codingStandardsChangeSetting WordPress.Utils.I18nTextDomainFixer old_text_domain twentyeleven */
2 :: L001 :: C101 :: T_WHITESPACE :: (0) :: 

3 :: L002 :: C1 :: T_COMMENT :: (97) :: /* @codingStandardsChangeSetting WordPress.Utils.I18nTextDomainFixer new_text_domain twentyten */
4 :: L002 :: C98 :: T_WHITESPACE :: (0) :: 

5 :: L003 :: C1 :: T_WHITESPACE :: (0) :: 

6 :: L004 :: C1 :: T_COMMENT :: (2) :: /*

7 :: L005 :: C1 :: T_COMMENT :: (32) :: Theme Name: Correct text-domain.

8 :: L006 :: C1 :: T_COMMENT :: (50) :: Theme URI: https://wordpress.org/themes/twentyten/

9 :: L007 :: C1 :: T_COMMENT :: (535) :: Description: The 2010 theme for WordPress is stylish, customizable, simple, and readable -- make it yours with a custom menu, header image, and background. Twenty Ten supports six widgetized areas (two in the sidebar, four in the footer) and featured images (thumbnails for gallery posts and custom header images for posts and pages). It includes stylesheets for print and the admin Visual Editor, special styles for posts in the "Asides" and "Gallery" categories, and has an optional one-column page template that removes the sidebar.

10 :: L008 :: C1 :: T_COMMENT :: (26) :: Author: the WordPress team

11 :: L009 :: C1 :: T_COMMENT :: (34) :: Author URI: https://wordpress.org/

12 :: L010 :: C1 :: T_COMMENT :: (12) :: Version: 2.5

13 :: L011 :: C1 :: T_COMMENT :: (47) :: License: GNU General Public License v2 or later

14 :: L012 :: C1 :: T_COMMENT :: (53) :: License URI: http://www.gnu.org/licenses/gpl-2.0.html

15 :: L013 :: C1 :: T_COMMENT :: (244) :: Tags: blog, two-columns, custom-header, custom-background, threaded-comments, sticky-post, translation-ready, microformats, rtl-language-support, editor-style, custom-menu, flexible-header, featured-images, footer-widgets, featured-image-header

16 :: L014 :: C1 :: T_COMMENT :: (22) :: Text Domain: twentyten

17 :: L015 :: C1 :: T_COMMENT :: (2) :: */
18 :: L015 :: C3 :: T_WHITESPACE :: (0) :: 

19 :: L016 :: C1 :: T_WHITESPACE :: (0) :: 

20 :: L017 :: C1 :: T_COMMENT :: (90) :: /* @codingStandardsChangeSetting WordPress.Utils.I18nTextDomainFixer old_text_domain _s */
21 :: L017 :: C91 :: T_WHITESPACE :: (0) :: 

22 :: L018 :: C1 :: T_COMMENT :: (102) :: /* @codingStandardsChangeSetting WordPress.Utils.I18nTextDomainFixer new_text_domain something-else */
23 :: L018 :: C103 :: T_WHITESPACE :: (0) :: 

24 :: L019 :: C1 :: T_WHITESPACE :: (0) :: 

25 :: L020 :: C1 :: T_COMMENT :: (3) :: /*!

26 :: L021 :: C1 :: T_COMMENT :: (104) :: Theme Name: Text domain which should be fixed and checking that consequtive comments don't get mixed up.

27 :: L022 :: C1 :: T_COMMENT :: (34) :: Theme URI: https://underscores.me/

28 :: L023 :: C1 :: T_COMMENT :: (18) :: Author: Automattic

29 :: L024 :: C1 :: T_COMMENT :: (35) :: Author URI: https://automattic.com/

30 :: L025 :: C1 :: T_COMMENT :: (277) :: Description: Hi. I'm a starter theme called <code>_s</code>, or <em>underscores</em>, if you like. I'm a theme meant for hacking so don't use me as a <em>Parent Theme</em>. Instead try turning me into the next, most awesome, WordPress theme out there. That's what I'm here for.

31 :: L026 :: C1 :: T_COMMENT :: (14) :: Version: 1.0.0

32 :: L027 :: C1 :: T_COMMENT :: (47) :: License: GNU General Public License v2 or later

33 :: L028 :: C1 :: T_COMMENT :: (20) :: License URI: LICENSE

34 :: L029 :: C1 :: T_COMMENT :: (15) :: Text Domain: _s

35 :: L030 :: C1 :: T_COMMENT :: (104) :: Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

36 :: L031 :: C1 :: T_COMMENT :: (0) :: 

37 :: L032 :: C1 :: T_COMMENT :: (54) :: This theme, like WordPress, is licensed under the GPL.

38 :: L033 :: C1 :: T_COMMENT :: (83) :: Use it to make something cool, have fun, and share what you've learned with others.

39 :: L034 :: C1 :: T_COMMENT :: (0) :: 

40 :: L035 :: C1 :: T_COMMENT :: (82) :: _s is based on Underscores https://underscores.me/, (C) 2012-2017 Automattic, Inc.

41 :: L036 :: C1 :: T_COMMENT :: (70) :: Underscores is distributed under the terms of the GNU GPL v2 or later.

42 :: L037 :: C1 :: T_COMMENT :: (0) :: 

43 :: L038 :: C1 :: T_COMMENT :: (68) :: Normalizing styles have been helped along thanks to the fine work of

44 :: L039 :: C1 :: T_COMMENT :: (76) :: Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/

45 :: L040 :: C1 :: T_COMMENT :: (2) :: */
46 :: L040 :: C3 :: T_WHITESPACE :: (0) :: 

47 :: L041 :: C1 :: T_COMMENT :: (64) :: /*--------------------------------------------------------------

48 :: L042 :: C1 :: T_COMMENT :: (22) :: >>> TABLE OF CONTENTS:

49 :: L043 :: C1 :: T_COMMENT :: (64) :: ----------------------------------------------------------------

50 :: L044 :: C1 :: T_COMMENT :: (11) :: # Normalize

51 :: L045 :: C1 :: T_COMMENT :: (12) :: # Typography

52 :: L046 :: C1 :: T_COMMENT :: (10) :: # Elements

53 :: L047 :: C1 :: T_COMMENT :: (7) :: # Forms

54 :: L048 :: C1 :: T_COMMENT :: (12) :: # Navigation

55 :: L049 :: C1 :: T_COMMENT :: (9) :: 	## Links

56 :: L050 :: C1 :: T_COMMENT :: (9) :: 	## Menus

57 :: L051 :: C1 :: T_COMMENT :: (15) :: # Accessibility

58 :: L052 :: C1 :: T_COMMENT :: (12) :: # Alignments

59 :: L053 :: C1 :: T_COMMENT :: (11) :: # Clearings

60 :: L054 :: C1 :: T_COMMENT :: (9) :: # Widgets

61 :: L055 :: C1 :: T_COMMENT :: (9) :: # Content

62 :: L056 :: C1 :: T_COMMENT :: (19) :: 	## Posts and pages

63 :: L057 :: C1 :: T_COMMENT :: (12) :: 	## Comments

64 :: L058 :: C1 :: T_COMMENT :: (17) :: # Infinite scroll

65 :: L059 :: C1 :: T_COMMENT :: (7) :: # Media

66 :: L060 :: C1 :: T_COMMENT :: (12) :: 	## Captions

67 :: L061 :: C1 :: T_COMMENT :: (13) :: 	## Galleries

68 :: L062 :: C1 :: T_COMMENT :: (64) :: --------------------------------------------------------------*/
69 :: L062 :: C65 :: T_WHITESPACE :: (0) :: 

70 :: L063 :: C1 :: T_COMMENT :: (64) :: /*--------------------------------------------------------------

71 :: L064 :: C1 :: T_COMMENT :: (11) :: # Normalize

72 :: L065 :: C1 :: T_COMMENT :: (64) :: --------------------------------------------------------------*/
73 :: L065 :: C65 :: T_WHITESPACE :: (0) :: 

74 :: L066 :: C1 :: T_COMMENT :: (75) :: /* normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
75 :: L066 :: C76 :: T_WHITESPACE :: (0) :: 

76 :: L067 :: C1 :: T_WHITESPACE :: (0) :: 

77 :: L068 :: C1 :: T_COMMENT :: (11) :: /* Document

78 :: L069 :: C1 :: T_COMMENT :: (79) :: 	 ========================================================================== */
79 :: L069 :: C80 :: T_WHITESPACE :: (0) :: 

80 :: L070 :: C1 :: T_WHITESPACE :: (0) :: 

81 :: L071 :: C1 :: T_DOC_COMMENT_OPEN_TAG :: (3) :: /**
array(10) {
  'content' =>
  string(3) "/**"
  'code' =>
  string(28) "PHPCS_T_DOC_COMMENT_OPEN_TAG"
  'type' =>
  string(22) "T_DOC_COMMENT_OPEN_TAG"
  'comment_tags' =>
  array(0) {
  }
  'comment_closer' =>
  int(94)
  'line' =>
  int(71)
  'column' =>
  int(1)
  'length' =>
  int(3)
  'level' =>
  int(0)
  'conditions' =>
  array(0) {
  }
}
82 :: L071 :: C4 :: T_DOC_COMMENT_WHITESPACE :: (0) :: 

83 :: L072 :: C1 :: T_DOC_COMMENT_WHITESPACE :: (1) ::  
84 :: L072 :: C2 :: T_DOC_COMMENT_STAR :: (1) :: *
85 :: L072 :: C3 :: T_DOC_COMMENT_WHITESPACE :: (1) ::  
86 :: L072 :: C4 :: T_DOC_COMMENT_STRING :: (43) :: 1. Correct the line height in all browsers.
87 :: L072 :: C47 :: T_DOC_COMMENT_WHITESPACE :: (0) :: 

88 :: L073 :: C1 :: T_DOC_COMMENT_WHITESPACE :: (1) ::  
89 :: L073 :: C2 :: T_DOC_COMMENT_STAR :: (1) :: *
90 :: L073 :: C3 :: T_DOC_COMMENT_WHITESPACE :: (1) ::  
91 :: L073 :: C4 :: T_DOC_COMMENT_STRING :: (69) :: 2. Prevent adjustments of font size after orientation changes in iOS.
92 :: L073 :: C73 :: T_DOC_COMMENT_WHITESPACE :: (0) :: 

93 :: L074 :: C1 :: T_DOC_COMMENT_WHITESPACE :: (1) ::  
94 :: L074 :: C2 :: T_DOC_COMMENT_CLOSE_TAG :: (2) :: */
95 :: L074 :: C4 :: T_WHITESPACE :: (0) :: 

96 :: L075 :: C1 :: T_WHITESPACE :: (0) :: 

97 :: L076 :: C1 :: T_STRING :: (4) :: html
98 :: L076 :: C5 :: T_WHITESPACE :: (1) ::  
99 :: L076 :: C6 :: T_OPEN_CURLY_BRACKET :: (1) :: {
100 :: L076 :: C7 :: T_WHITESPACE :: (0) :: 

101 :: L077 :: C1 :: T_WHITESPACE :: (1) :: \t
102 :: L077 :: C2 :: T_STYLE :: (11) :: line-height
103 :: L077 :: C13 :: T_COLON :: (1) :: :
104 :: L077 :: C14 :: T_WHITESPACE :: (1) ::  
105 :: L077 :: C15 :: T_DNUMBER :: (4) :: 1.15
106 :: L077 :: C19 :: T_SEMICOLON :: (1) :: ;
107 :: L077 :: C20 :: T_WHITESPACE :: (1) ::  
108 :: L077 :: C21 :: T_COMMENT :: (7) :: /* 1 */
109 :: L077 :: C28 :: T_WHITESPACE :: (0) :: 

110 :: L078 :: C1 :: T_WHITESPACE :: (1) :: \t
111 :: L078 :: C2 :: T_STYLE :: (24) :: -webkit-text-size-adjust
112 :: L078 :: C26 :: T_COLON :: (1) :: :
113 :: L078 :: C27 :: T_WHITESPACE :: (1) ::  
114 :: L078 :: C28 :: T_LNUMBER :: (3) :: 100
115 :: L078 :: C31 :: T_MODULUS :: (1) :: %
116 :: L078 :: C32 :: T_SEMICOLON :: (1) :: ;
117 :: L078 :: C33 :: T_WHITESPACE :: (1) ::  
118 :: L078 :: C34 :: T_COMMENT :: (7) :: /* 2 */
119 :: L078 :: C41 :: T_WHITESPACE :: (0) :: 

120 :: L079 :: C1 :: T_CLOSE_CURLY_BRACKET :: (1) :: }
121 :: L079 :: C2 :: T_WHITESPACE :: (0) :: 

122 :: L080 :: C1 :: T_WHITESPACE :: (0) :: 

123 :: L081 :: C1 :: T_COMMENT :: (103) :: /* @codingStandardsChangeSetting WordPress.Utils.I18nTextDomainFixer new_text_domain twentyseventeen */
124 :: L081 :: C104 :: T_WHITESPACE :: (0) :: 

125 :: L082 :: C1 :: T_WHITESPACE :: (0) :: 

126 :: L083 :: C1 :: T_COMMENT :: (2) :: /*

127 :: L084 :: C1 :: T_COMMENT :: (32) :: Theme Name: Missing text domain.

128 :: L085 :: C1 :: T_COMMENT :: (56) :: Theme URI: https://wordpress.org/themes/twentyseventeen/

129 :: L086 :: C1 :: T_COMMENT :: (26) :: Author: the WordPress team

130 :: L087 :: C1 :: T_COMMENT :: (34) :: Author URI: https://wordpress.org/

131 :: L088 :: C1 :: T_COMMENT :: (463) :: Description: Twenty Seventeen brings your site to life with header video and immersive featured images. With a focus on business sites, it features multiple sections on the front page as well as widgets, navigation and social menus, a logo, and more. Personalize its asymmetrical grid with a custom color scheme and showcase your multimedia content with post formats. Our default theme for 2017 works great in many languages, for any abilities, and on any device.

132 :: L089 :: C1 :: T_COMMENT :: (12) :: Version: 1.6

133 :: L090 :: C1 :: T_COMMENT :: (47) :: License: GNU General Public License v2 or later

134 :: L091 :: C1 :: T_COMMENT :: (53) :: License URI: http://www.gnu.org/licenses/gpl-2.0.html

135 :: L092 :: C1 :: T_COMMENT :: (287) :: Tags: one-column, two-columns, right-sidebar, flexible-header, accessibility-ready, custom-colors, custom-header, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, post-formats, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready

136 :: L093 :: C1 :: T_COMMENT :: (0) :: 

137 :: L094 :: C1 :: T_COMMENT :: (54) :: This theme, like WordPress, is licensed under the GPL.

138 :: L095 :: C1 :: T_COMMENT :: (83) :: Use it to make something cool, have fun, and share what you've learned with others.

139 :: L096 :: C1 :: T_COMMENT :: (2) :: */
140 :: L096 :: C3 :: T_WHITESPACE :: (0) :: 

141 :: L097 :: C1 :: T_WHITESPACE :: (0) :: 

142 :: L098 :: C1 :: T_COMMENT :: (2) :: /*

143 :: L099 :: C1 :: T_COMMENT :: (62) ::  * Theme Name : Missing text domain, different comment format.

144 :: L100 :: C1 :: T_COMMENT :: (61) ::  * Theme URI  : https://wordpress.org/themes/twentyseventeen/

145 :: L101 :: C1 :: T_COMMENT :: (34) ::  * Author     : the WordPress team

146 :: L102 :: C1 :: T_COMMENT :: (38) ::  * Author URI : https://wordpress.org/

147 :: L103 :: C1 :: T_COMMENT :: (466) ::  * Description: Twenty Seventeen brings your site to life with header video and immersive featured images. With a focus on business sites, it features multiple sections on the front page as well as widgets, navigation and social menus, a logo, and more. Personalize its asymmetrical grid with a custom color scheme and showcase your multimedia content with post formats. Our default theme for 2017 works great in many languages, for any abilities, and on any device.

148 :: L104 :: C1 :: T_COMMENT :: (19) ::  * Version    : 1.6

149 :: L105 :: C1 :: T_COMMENT :: (54) ::  * License    : GNU General Public License v2 or later

150 :: L106 :: C1 :: T_COMMENT :: (56) ::  * License URI: http://www.gnu.org/licenses/gpl-2.0.html

151 :: L107 :: C1 :: T_COMMENT :: (297) ::  * Tags       : one-column, two-columns, right-sidebar, flexible-header, accessibility-ready, custom-colors, custom-header, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, post-formats, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready

152 :: L108 :: C1 :: T_COMMENT :: (2) ::  *

153 :: L109 :: C1 :: T_COMMENT :: (57) ::  * This theme, like WordPress, is licensed under the GPL.

154 :: L110 :: C1 :: T_COMMENT :: (86) ::  * Use it to make something cool, have fun, and share what you've learned with others.

155 :: L111 :: C1 :: T_COMMENT :: (3) ::  */
156 :: L111 :: C4 :: T_WHITESPACE :: (0) :: 

157 :: L112 :: C1 :: T_WHITESPACE :: (0) :: 

158 :: L113 :: C1 :: T_DOC_COMMENT_OPEN_TAG :: (3) :: /**
array(10) {
  'content' =>
  string(3) "/**"
  'code' =>
  string(28) "PHPCS_T_DOC_COMMENT_OPEN_TAG"
  'type' =>
  string(22) "T_DOC_COMMENT_OPEN_TAG"
  'comment_tags' =>
  array(0) {
  }
  'comment_closer' =>
  int(173)
  'line' =>
  int(113)
  'column' =>
  int(1)
  'length' =>
  int(3)
  'level' =>
  int(0)
  'conditions' =>
  array(0) {
  }
}
159 :: L113 :: C4 :: T_DOC_COMMENT_WHITESPACE :: (0) :: 

160 :: L114 :: C1 :: T_DOC_COMMENT_WHITESPACE :: (1) ::  
161 :: L114 :: C2 :: T_DOC_COMMENT_STAR :: (1) :: *
162 :: L114 :: C3 :: T_DOC_COMMENT_WHITESPACE :: (1) ::  
163 :: L114 :: C4 :: T_DOC_COMMENT_STRING :: (59) :: Theme Name: Not the theme header (not enough headers found.
164 :: L114 :: C63 :: T_DOC_COMMENT_WHITESPACE :: (0) :: 

165 :: L115 :: C1 :: T_DOC_COMMENT_WHITESPACE :: (1) ::  
166 :: L115 :: C2 :: T_DOC_COMMENT_CLOSE_TAG :: (2) :: */
167 :: L115 :: C4 :: T_WHITESPACE :: (0) :: 

168 :: L116 :: C1 :: T_WHITESPACE :: (0) :: 

169 :: L117 :: C1 :: T_COMMENT :: (2) :: /*

170 :: L118 :: C1 :: T_COMMENT :: (49) :: Theme Name: Missing text domain. Minimum headers.

171 :: L119 :: C1 :: T_COMMENT :: (27) :: Theme URI: http://protected

172 :: L120 :: C1 :: T_COMMENT :: (38) :: Description: http://thisshouldntbeaurl

173 :: L121 :: C1 :: T_COMMENT :: (2) :: */
174 :: L121 :: C3 :: T_WHITESPACE :: (0) :: 

175 :: L122 :: C1 :: T_WHITESPACE :: (0) :: 

176 :: L123 :: C1 :: T_COMMENT :: (2) :: /*

177 :: L124 :: C1 :: T_COMMENT :: (99) ::   Theme Name:       Missing text domain, different comment format, additional non-standard headers.

178 :: L125 :: C1 :: T_COMMENT :: (37) ::   Theme URI:        https://protected

179 :: L126 :: C1 :: T_COMMENT :: (31) ::   Author:           Lacy Morrow

180 :: L127 :: C1 :: T_COMMENT :: (36) ::   Author URI:       http://protected

181 :: L128 :: C1 :: T_COMMENT :: (732) ::   Description:      A Ghost-like WordPress theme. Casper (for WordPress) is a simple yet beautiful theme for bloggers. Inspired by the Ghost blogging platform, Casper is a WordPress port of the default theme by the same name. The goal of this project is to emulate the gorgeous theme while taking advantage of features exclusive to the WordPress framework. There are plenty of customization options included, accessible through the WordPress Customizer. Already included are hooks to serve responsive images appropriately and media queries to provide a fast and seamless experience from desktop to mobile. For questions, support, development instructions, or to contribute to the project visit [https://github.com/lacymorrow/casper]

182 :: L129 :: C1 :: T_COMMENT :: (25) ::   Version:          1.1.5

183 :: L130 :: C1 :: T_COMMENT :: (51) ::   License:          GNU General Public License v2.0

184 :: L131 :: C1 :: T_COMMENT :: (60) ::   License URI:      http://www.gnu.org/licenses/gpl-2.0.html

185 :: L132 :: C1 :: T_COMMENT :: (31) ::   Domain Path:      /languages/

186 :: L133 :: C1 :: T_COMMENT :: (119) ::   Tags:             responsive-layout, black, white, one-column, fluid-layout, custom-header, custom-menu, editor-style

187 :: L134 :: C1 :: T_COMMENT :: (48) ::   GitHub Theme URI: https://github.com/protected

188 :: L135 :: C1 :: T_COMMENT :: (26) ::   GitHub Branch:    master

189 :: L136 :: C1 :: T_COMMENT :: (87) ::   Casper is based on Underscores http://underscores.me/, (C) 2012-2014 Automattic, Inc.

190 :: L137 :: C1 :: T_COMMENT :: (2) :: */
191 :: L137 :: C3 :: T_WHITESPACE :: (0) :: 

192 :: L138 :: C1 :: T_WHITESPACE :: (0) :: 

193 :: L139 :: C1 :: T_DOC_COMMENT_OPEN_TAG :: (3) :: /**
array(10) {
  'content' =>
  string(3) "/**"
  'code' =>
  string(28) "PHPCS_T_DOC_COMMENT_OPEN_TAG"
  'type' =>
  string(22) "T_DOC_COMMENT_OPEN_TAG"
  'comment_tags' =>
  array(0) {
  }
  'comment_closer' =>
  int(283)
  'line' =>
  int(139)
  'column' =>
  int(1)
  'length' =>
  int(3)
  'level' =>
  int(0)
  'conditions' =>
  array(0) {
  }
}
194 :: L139 :: C4 :: T_DOC_COMMENT_WHITESPACE :: (0) :: 

195 :: L140 :: C1 :: T_DOC_COMMENT_WHITESPACE :: (1) ::  
196 :: L140 :: C2 :: T_DOC_COMMENT_STAR :: (1) :: *
197 :: L140 :: C3 :: T_DOC_COMMENT_WHITESPACE :: (1) ::  
198 :: L140 :: C4 :: T_DOC_COMMENT_STRING :: (49) :: Theme Name: Missing text domain. Docblock format.
199 :: L140 :: C53 :: T_DOC_COMMENT_WHITESPACE :: (0) :: 

200 :: L141 :: C1 :: T_DOC_COMMENT_WHITESPACE :: (1) ::  
201 :: L141 :: C2 :: T_DOC_COMMENT_STAR :: (1) :: *
202 :: L141 :: C3 :: T_DOC_COMMENT_WHITESPACE :: (1) ::  
203 :: L141 :: C4 :: T_DOC_COMMENT_STRING :: (54) :: Theme URI: https://github.com/WordPress/twentynineteen
204 :: L141 :: C58 :: T_DOC_COMMENT_WHITESPACE :: (0) :: 

205 :: L142 :: C1 :: T_DOC_COMMENT_WHITESPACE :: (1) ::  
206 :: L142 :: C2 :: T_DOC_COMMENT_STAR :: (1) :: *
207 :: L142 :: C3 :: T_DOC_COMMENT_WHITESPACE :: (1) ::  
208 :: L142 :: C4 :: T_DOC_COMMENT_STRING :: (26) :: Author: the WordPress team
209 :: L142 :: C30 :: T_DOC_COMMENT_WHITESPACE :: (0) :: 

210 :: L143 :: C1 :: T_DOC_COMMENT_WHITESPACE :: (1) ::  
211 :: L143 :: C2 :: T_DOC_COMMENT_STAR :: (1) :: *
212 :: L143 :: C3 :: T_DOC_COMMENT_WHITESPACE :: (1) ::  
213 :: L143 :: C4 :: T_DOC_COMMENT_STRING :: (34) :: Author URI: https://wordpress.org/
214 :: L143 :: C38 :: T_DOC_COMMENT_WHITESPACE :: (0) :: 

215 :: L144 :: C1 :: T_DOC_COMMENT_WHITESPACE :: (1) ::  
216 :: L144 :: C2 :: T_DOC_COMMENT_STAR :: (1) :: *
217 :: L144 :: C3 :: T_DOC_COMMENT_WHITESPACE :: (1) ::  
218 :: L144 :: C4 :: T_DOC_COMMENT_STRING :: (41) :: Description: A new Gutenberg-ready theme.
219 :: L144 :: C45 :: T_DOC_COMMENT_WHITESPACE :: (0) :: 

220 :: L145 :: C1 :: T_DOC_COMMENT_WHITESPACE :: (1) ::  
221 :: L145 :: C2 :: T_DOC_COMMENT_STAR :: (1) :: *
222 :: L145 :: C3 :: T_DOC_COMMENT_WHITESPACE :: (1) ::  
223 :: L145 :: C4 :: T_DOC_COMMENT_STRING :: (34) :: Requires at least: WordPress 4.9.6
224 :: L145 :: C38 :: T_DOC_COMMENT_WHITESPACE :: (0) :: 

225 :: L146 :: C1 :: T_DOC_COMMENT_WHITESPACE :: (1) ::  
226 :: L146 :: C2 :: T_DOC_COMMENT_STAR :: (1) :: *
227 :: L146 :: C3 :: T_DOC_COMMENT_WHITESPACE :: (1) ::  
228 :: L146 :: C4 :: T_DOC_COMMENT_STRING :: (12) :: Version: 1.0
229 :: L146 :: C16 :: T_DOC_COMMENT_WHITESPACE :: (0) :: 

230 :: L147 :: C1 :: T_DOC_COMMENT_WHITESPACE :: (1) ::  
231 :: L147 :: C2 :: T_DOC_COMMENT_STAR :: (1) :: *
232 :: L147 :: C3 :: T_DOC_COMMENT_WHITESPACE :: (1) ::  
233 :: L147 :: C4 :: T_DOC_COMMENT_STRING :: (47) :: License: GNU General Public License v2 or later
234 :: L147 :: C51 :: T_DOC_COMMENT_WHITESPACE :: (0) :: 

235 :: L148 :: C1 :: T_DOC_COMMENT_WHITESPACE :: (1) ::  
236 :: L148 :: C2 :: T_DOC_COMMENT_STAR :: (1) :: *
237 :: L148 :: C3 :: T_DOC_COMMENT_WHITESPACE :: (1) ::  
238 :: L148 :: C4 :: T_DOC_COMMENT_STRING :: (20) :: License URI: LICENSE
239 :: L148 :: C24 :: T_DOC_COMMENT_WHITESPACE :: (0) :: 

240 :: L149 :: C1 :: T_DOC_COMMENT_WHITESPACE :: (1) ::  
241 :: L149 :: C2 :: T_DOC_COMMENT_STAR :: (1) :: *
242 :: L149 :: C3 :: T_DOC_COMMENT_WHITESPACE :: (1) ::  
243 :: L149 :: C4 :: T_DOC_COMMENT_STRING :: (104) :: Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
244 :: L149 :: C108 :: T_DOC_COMMENT_WHITESPACE :: (0) :: 

245 :: L150 :: C1 :: T_DOC_COMMENT_WHITESPACE :: (1) ::  
246 :: L150 :: C2 :: T_DOC_COMMENT_STAR :: (1) :: *
247 :: L150 :: C3 :: T_DOC_COMMENT_WHITESPACE :: (1) ::  
248 :: L150 :: C4 :: T_DOC_COMMENT_STRING :: (54) :: This theme, like WordPress, is licensed under the GPL.
249 :: L150 :: C58 :: T_DOC_COMMENT_WHITESPACE :: (0) :: 

250 :: L151 :: C1 :: T_DOC_COMMENT_WHITESPACE :: (1) ::  
251 :: L151 :: C2 :: T_DOC_COMMENT_STAR :: (1) :: *
252 :: L151 :: C3 :: T_DOC_COMMENT_WHITESPACE :: (1) ::  
253 :: L151 :: C4 :: T_DOC_COMMENT_STRING :: (83) :: Use it to make something cool, have fun, and share what you've learned with others.
254 :: L151 :: C87 :: T_DOC_COMMENT_WHITESPACE :: (0) :: 

255 :: L152 :: C1 :: T_DOC_COMMENT_WHITESPACE :: (1) ::  
256 :: L152 :: C2 :: T_DOC_COMMENT_STAR :: (1) :: *
257 :: L152 :: C3 :: T_DOC_COMMENT_WHITESPACE :: (1) ::  
258 :: L152 :: C4 :: T_DOC_COMMENT_STRING :: (95) :: Twenty Nineteen is based on Underscores https://underscores.me/, (C) 2012-2018 Automattic, Inc.
259 :: L152 :: C99 :: T_DOC_COMMENT_WHITESPACE :: (0) :: 

260 :: L153 :: C1 :: T_DOC_COMMENT_WHITESPACE :: (1) ::  
261 :: L153 :: C2 :: T_DOC_COMMENT_STAR :: (1) :: *
262 :: L153 :: C3 :: T_DOC_COMMENT_WHITESPACE :: (1) ::  
263 :: L153 :: C4 :: T_DOC_COMMENT_STRING :: (70) :: Underscores is distributed under the terms of the GNU GPL v2 or later.
264 :: L153 :: C74 :: T_DOC_COMMENT_WHITESPACE :: (0) :: 

265 :: L154 :: C1 :: T_DOC_COMMENT_WHITESPACE :: (1) ::  
266 :: L154 :: C2 :: T_DOC_COMMENT_STAR :: (1) :: *
267 :: L154 :: C3 :: T_DOC_COMMENT_WHITESPACE :: (1) ::  
268 :: L154 :: C4 :: T_DOC_COMMENT_STRING :: (68) :: Normalizing styles have been helped along thanks to the fine work of
269 :: L154 :: C72 :: T_DOC_COMMENT_WHITESPACE :: (0) :: 

270 :: L155 :: C1 :: T_DOC_COMMENT_WHITESPACE :: (1) ::  
271 :: L155 :: C2 :: T_DOC_COMMENT_STAR :: (1) :: *
272 :: L155 :: C3 :: T_DOC_COMMENT_WHITESPACE :: (1) ::  
273 :: L155 :: C4 :: T_DOC_COMMENT_STRING :: (76) :: Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
274 :: L155 :: C80 :: T_DOC_COMMENT_WHITESPACE :: (0) :: 

275 :: L156 :: C1 :: T_DOC_COMMENT_WHITESPACE :: (1) ::  
276 :: L156 :: C2 :: T_DOC_COMMENT_CLOSE_TAG :: (2) :: */
277 :: L156 :: C4 :: T_WHITESPACE :: (0) :: 

278 :: L157 :: C1 :: T_WHITESPACE :: (0) :: 

279 :: L158 :: C1 :: T_COMMENT :: (93) :: /* @codingStandardsChangeSetting WordPress.Utils.I18nTextDomainFixer old_text_domain false */
280 :: L158 :: C94 :: T_WHITESPACE :: (0) :: 

281 :: L159 :: C1 :: T_COMMENT :: (93) :: /* @codingStandardsChangeSetting WordPress.Utils.I18nTextDomainFixer new_text_domain false */
282 :: L159 :: C94 :: T_WHITESPACE :: (0) :: 

283 :: L160 :: C1 :: T_CLOSE_TAG :: (0) ::

-vvv output
Processing ruleset I:\000_GitHub\PHPCS\TestCode\TestCode\ruleset.xml
	Adding sniff files from I:\000_GitHub\PHPCS\TestCode\TestCode\Sniffs directory
		=> I:\000_GitHub\PHPCS\TestCode\TestCode\Sniffs\Test\TestSniff.php
	=> included autoloader I:\000_GitHub\PHPCS\PHPCompatibility\PHPCompatibility\PHPCSAliases.php
=> Ruleset processing complete; included 1 sniffs and excluded 0
Registered TestCode\Sniffs\Test\TestSniff
Creating file list... DONE (1 files in queue)
Changing into directory I:\000_GitHub\PHPCS\WordPress\WordPress\Tests\Utils
Processing I18nTextDomainFixerUnitTest.css 
	*** START CSS TOKENIZING 1ST PASS ***
	*** START PHP TOKENIZING ***
	Process token [0]: T_OPEN_TAG => <?php 
	Process token [1]: T_COMMENT => /* @codingStandardsChangeSetting WordPress.Utils.I18nTextDomainFixer old_text_domain twentyeleven */
	Process token [2]: T_WHITESPACE => \n
	Process token [3]: T_COMMENT => /* @codingStandardsChangeSetting WordPress.Utils.I18nTextDomainFixer new_text_domain twentyten */
	Process token [4]: T_WHITESPACE => \n\n
	Process token [5]: T_COMMENT => /*\nTheme Name: Correct text-domain.\nTheme URI: https://wordpress.org/themes/twentyten/\nDescription: The 2010 theme for WordPress is stylish, customizable, simple, and readable -- make it yours with a custom menu, header image, and background. Twenty Ten supports six widgetized areas (two in the sidebar, four in the footer) and featured images (thumbnails for gallery posts and custom header images for posts and pages). It includes stylesheets for print and the admin Visual Editor, special styles for posts in the "Asides" and "Gallery" categories, and has an optional one-column page template that removes the sidebar.\nAuthor: the WordPress team\nAuthor URI: https://wordpress.org/\nVersion: 2.5\nLicense: GNU General Public License v2 or later\nLicense URI: http://www.gnu.org/licenses/gpl-2.0.html\nTags: blog, two-columns, custom-header, custom-background, threaded-comments, sticky-post, translation-ready, microformats, rtl-language-support, editor-style, custom-menu, flexible-header, featured-images, footer-widgets, featured-image-header\nText Domain: twentyten\n*/
	Process token [6]: T_WHITESPACE => \n\n
	Process token [7]: T_COMMENT => /* @codingStandardsChangeSetting WordPress.Utils.I18nTextDomainFixer old_text_domain _s */
	Process token [8]: T_WHITESPACE => \n
	Process token [9]: T_COMMENT => /* @codingStandardsChangeSetting WordPress.Utils.I18nTextDomainFixer new_text_domain something-else */
	Process token [10]: T_WHITESPACE => \n\n
	Process token [11]: T_COMMENT => /*!\nTheme Name: Text domain which should be fixed and checking that consequtive comments don't get mixed up.\nTheme URI: https://underscores.me/\nAuthor: Automattic\nAuthor URI: https://automattic.com/\nDescription: Hi. I'm a starter theme called <code>_s</code>, or <em>underscores</em>, if you like. I'm a theme meant for hacking so don't use me as a <em>Parent Theme</em>. Instead try turning me into the next, most awesome, WordPress theme out there. That's what I'm here for.\nVersion: 1.0.0\nLicense: GNU General Public License v2 or later\nLicense URI: LICENSE\nText Domain: _s\nTags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready\n\nThis theme, like WordPress, is licensed under the GPL.\nUse it to make something cool, have fun, and share what you've learned with others.\n\n_s is based on Underscores https://underscores.me/, (C) 2012-2017 Automattic, Inc.\nUnderscores is distributed under the terms of the GNU GPL v2 or later.\n\nNormalizing styles have been helped along thanks to the fine work of\nNicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/\n*/
	Process token [12]: T_WHITESPACE => \n
	Process token [13]: T_COMMENT => /*--------------------------------------------------------------\n>>> TABLE OF CONTENTS:\n----------------------------------------------------------------\n# Normalize\n# Typography\n# Elements\n# Forms\n# Navigation\n\t## Links\n\t## Menus\n# Accessibility\n# Alignments\n# Clearings\n# Widgets\n# Content\n\t## Posts and pages\n\t## Comments\n# Infinite scroll\n# Media\n\t## Captions\n\t## Galleries\n--------------------------------------------------------------*/
	Process token [14]: T_WHITESPACE => \n
	Process token [15]: T_COMMENT => /*--------------------------------------------------------------\n# Normalize\n--------------------------------------------------------------*/
	Process token [16]: T_WHITESPACE => \n
	Process token [17]: T_COMMENT => /* normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
	Process token [18]: T_WHITESPACE => \n\n
	Process token [19]: T_COMMENT => /* Document\n\t ========================================================================== */
	Process token [20]: T_WHITESPACE => \n\n
	Process token [21]: T_DOC_COMMENT => /**\n * 1. Correct the line height in all browsers.\n * 2. Prevent adjustments of font size after orientation changes in iOS.\n */
		*** START COMMENT TOKENIZING ***
		Create comment token: T_DOC_COMMENT_OPEN_TAG => /**
		Create comment token: T_DOC_COMMENT_WHITESPACE => \n
		Create comment token: T_DOC_COMMENT_WHITESPACE =>  
		Create comment token: T_DOC_COMMENT_STAR => *
		Create comment token: T_DOC_COMMENT_WHITESPACE =>  
		Create comment token: T_DOC_COMMENT_STRING => 1. Correct the line height in all browsers.
		Create comment token: T_DOC_COMMENT_WHITESPACE => \n
		Create comment token: T_DOC_COMMENT_WHITESPACE =>  
		Create comment token: T_DOC_COMMENT_STAR => *
		Create comment token: T_DOC_COMMENT_WHITESPACE =>  
		Create comment token: T_DOC_COMMENT_STRING => 2. Prevent adjustments of font size after orientation changes in iOS.
		Create comment token: T_DOC_COMMENT_WHITESPACE => \n
		Create comment token: T_DOC_COMMENT_WHITESPACE =>  
		Create comment token: T_DOC_COMMENT_CLOSE_TAG => */
		*** END COMMENT TOKENIZING ***
	Process token [22]: T_WHITESPACE => \n\n
	Process token [23]: T_STRING => html
	Process token [24]: T_WHITESPACE =>  
	Process token  25 : T_OPEN_CURLY_BRACKET => {
	Process token [26]: T_WHITESPACE => \n\t
	Process token [27]: T_STRING => line
	Process token  28 : T_MINUS => -
	Process token [29]: T_STRING => height
		* token 29 changed from T_STRING to T_GOTO_LABEL
		* skipping T_COLON token 30
	Process token [31]: T_WHITESPACE =>  
	Process token [32]: T_DNUMBER => 1.15
	Process token  33 : T_SEMICOLON => ;
	Process token [34]: T_WHITESPACE =>  
	Process token [35]: T_COMMENT => /* 1 */
	Process token [36]: T_WHITESPACE => \n\t
	Process token  37 : T_MINUS => -
	Process token [38]: T_STRING => webkit
	Process token  39 : T_MINUS => -
	Process token [40]: T_STRING => text
	Process token  41 : T_MINUS => -
	Process token [42]: T_STRING => size
	Process token  43 : T_MINUS => -
	Process token [44]: T_STRING => adjust
		* token 44 changed from T_STRING to T_GOTO_LABEL
		* skipping T_COLON token 45
	Process token [46]: T_WHITESPACE =>  
	Process token [47]: T_LNUMBER => 100
	Process token  48 : T_MODULUS => %
	Process token  49 : T_SEMICOLON => ;
	Process token [50]: T_WHITESPACE =>  
	Process token [51]: T_COMMENT => /* 2 */
	Process token [52]: T_WHITESPACE => \n
	Process token  53 : T_CLOSE_CURLY_BRACKET => }
	Process token [54]: T_WHITESPACE => \n\n
	Process token [55]: T_COMMENT => /* @codingStandardsChangeSetting WordPress.Utils.I18nTextDomainFixer new_text_domain twentyseventeen */
	Process token [56]: T_WHITESPACE => \n\n
	Process token [57]: T_COMMENT => /*\nTheme Name: Missing text domain.\nTheme URI: https://wordpress.org/themes/twentyseventeen/\nAuthor: the WordPress team\nAuthor URI: https://wordpress.org/\nDescription: Twenty Seventeen brings your site to life with header video and immersive featured images. With a focus on business sites, it features multiple sections on the front page as well as widgets, navigation and social menus, a logo, and more. Personalize its asymmetrical grid with a custom color scheme and showcase your multimedia content with post formats. Our default theme for 2017 works great in many languages, for any abilities, and on any device.\nVersion: 1.6\nLicense: GNU General Public License v2 or later\nLicense URI: http://www.gnu.org/licenses/gpl-2.0.html\nTags: one-column, two-columns, right-sidebar, flexible-header, accessibility-ready, custom-colors, custom-header, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, post-formats, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready\n\nThis theme, like WordPress, is licensed under the GPL.\nUse it to make something cool, have fun, and share what you've learned with others.\n*/
	Process token [58]: T_WHITESPACE => \n\n
	Process token [59]: T_COMMENT => /*\n * Theme Name : Missing text domain, different comment format.\n * Theme URI  : https://wordpress.org/themes/twentyseventeen/\n * Author     : the WordPress team\n * Author URI : https://wordpress.org/\n * Description: Twenty Seventeen brings your site to life with header video and immersive featured images. With a focus on business sites, it features multiple sections on the front page as well as widgets, navigation and social menus, a logo, and more. Personalize its asymmetrical grid with a custom color scheme and showcase your multimedia content with post formats. Our default theme for 2017 works great in many languages, for any abilities, and on any device.\n * Version    : 1.6\n * License    : GNU General Public License v2 or later\n * License URI: http://www.gnu.org/licenses/gpl-2.0.html\n * Tags       : one-column, two-columns, right-sidebar, flexible-header, accessibility-ready, custom-colors, custom-header, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, post-formats, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready\n *\n * This theme, like WordPress, is licensed under the GPL.\n * Use it to make something cool, have fun, and share what you've learned with others.\n */
	Process token [60]: T_WHITESPACE => \n\n
	Process token [61]: T_DOC_COMMENT => /**\n * Theme Name: Not the theme header (not enough headers found.\n */
		*** START COMMENT TOKENIZING ***
		Create comment token: T_DOC_COMMENT_OPEN_TAG => /**
		Create comment token: T_DOC_COMMENT_WHITESPACE => \n
		Create comment token: T_DOC_COMMENT_WHITESPACE =>  
		Create comment token: T_DOC_COMMENT_STAR => *
		Create comment token: T_DOC_COMMENT_WHITESPACE =>  
		Create comment token: T_DOC_COMMENT_STRING => Theme Name: Not the theme header (not enough headers found.
		Create comment token: T_DOC_COMMENT_WHITESPACE => \n
		Create comment token: T_DOC_COMMENT_WHITESPACE =>  
		Create comment token: T_DOC_COMMENT_CLOSE_TAG => */
		*** END COMMENT TOKENIZING ***
	Process token [62]: T_WHITESPACE => \n\n
	Process token [63]: T_COMMENT => /*\nTheme Name: Missing text domain. Minimum headers.\nTheme URI: http://protected\nDescription: http://thisshouldntbeaurl\n*/
	Process token [64]: T_WHITESPACE => \n\n
	Process token [65]: T_COMMENT => /*\n  Theme Name:       Missing text domain, different comment format, additional non-standard headers.\n  Theme URI:        https://protected\n  Author:           Lacy Morrow\n  Author URI:       http://protected\n  Description:      A Ghost-like WordPress theme. Casper (for WordPress) is a simple yet beautiful theme for bloggers. Inspired by the Ghost blogging platform, Casper is a WordPress port of the default theme by the same name. The goal of this project is to emulate the gorgeous theme while taking advantage of features exclusive to the WordPress framework. There are plenty of customization options included, accessible through the WordPress Customizer. Already included are hooks to serve responsive images appropriately and media queries to provide a fast and seamless experience from desktop to mobile. For questions, support, development instructions, or to contribute to the project visit [https://github.com/lacymorrow/casper]\n  Version:          1.1.5\n  License:          GNU General Public License v2.0\n  License URI:      http://www.gnu.org/licenses/gpl-2.0.html\n  Domain Path:      /languages/\n  Tags:             responsive-layout, black, white, one-column, fluid-layout, custom-header, custom-menu, editor-style\n  GitHub Theme URI: https://github.com/protected\n  GitHub Branch:    master\n  Casper is based on Underscores http://underscores.me/, (C) 2012-2014 Automattic, Inc.\n*/
	Process token [66]: T_WHITESPACE => \n\n
	Process token [67]: T_DOC_COMMENT => /**\n * Theme Name: Missing text domain. Docblock format.\n * Theme URI: https://github.com/WordPress/twentynineteen\n * Author: the WordPress team\n * Author URI: https://wordpress.org/\n * Description: A new Gutenberg-ready theme.\n * Requires at least: WordPress 4.9.6\n * Version: 1.0\n * License: GNU General Public License v2 or later\n * License URI: LICENSE\n * Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready\n * This theme, like WordPress, is licensed under the GPL.\n * Use it to make something cool, have fun, and share what you've learned with others.\n * Twenty Nineteen is based on Underscores https://underscores.me/, (C) 2012-2018 Automattic, Inc.\n * Underscores is distributed under the terms of the GNU GPL v2 or later.\n * Normalizing styles have been helped along thanks to the fine work of\n * Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/\n */
		*** START COMMENT TOKENIZING ***
		Create comment token: T_DOC_COMMENT_OPEN_TAG => /**
		Create comment token: T_DOC_COMMENT_WHITESPACE => \n
		Create comment token: T_DOC_COMMENT_WHITESPACE =>  
		Create comment token: T_DOC_COMMENT_STAR => *
		Create comment token: T_DOC_COMMENT_WHITESPACE =>  
		Create comment token: T_DOC_COMMENT_STRING => Theme Name: Missing text domain. Docblock format.
		Create comment token: T_DOC_COMMENT_WHITESPACE => \n
		Create comment token: T_DOC_COMMENT_WHITESPACE =>  
		Create comment token: T_DOC_COMMENT_STAR => *
		Create comment token: T_DOC_COMMENT_WHITESPACE =>  
		Create comment token: T_DOC_COMMENT_STRING => Theme URI: https://github.com/WordPress/twentynineteen
		Create comment token: T_DOC_COMMENT_WHITESPACE => \n
		Create comment token: T_DOC_COMMENT_WHITESPACE =>  
		Create comment token: T_DOC_COMMENT_STAR => *
		Create comment token: T_DOC_COMMENT_WHITESPACE =>  
		Create comment token: T_DOC_COMMENT_STRING => Author: the WordPress team
		Create comment token: T_DOC_COMMENT_WHITESPACE => \n
		Create comment token: T_DOC_COMMENT_WHITESPACE =>  
		Create comment token: T_DOC_COMMENT_STAR => *
		Create comment token: T_DOC_COMMENT_WHITESPACE =>  
		Create comment token: T_DOC_COMMENT_STRING => Author URI: https://wordpress.org/
		Create comment token: T_DOC_COMMENT_WHITESPACE => \n
		Create comment token: T_DOC_COMMENT_WHITESPACE =>  
		Create comment token: T_DOC_COMMENT_STAR => *
		Create comment token: T_DOC_COMMENT_WHITESPACE =>  
		Create comment token: T_DOC_COMMENT_STRING => Description: A new Gutenberg-ready theme.
		Create comment token: T_DOC_COMMENT_WHITESPACE => \n
		Create comment token: T_DOC_COMMENT_WHITESPACE =>  
		Create comment token: T_DOC_COMMENT_STAR => *
		Create comment token: T_DOC_COMMENT_WHITESPACE =>  
		Create comment token: T_DOC_COMMENT_STRING => Requires at least: WordPress 4.9.6
		Create comment token: T_DOC_COMMENT_WHITESPACE => \n
		Create comment token: T_DOC_COMMENT_WHITESPACE =>  
		Create comment token: T_DOC_COMMENT_STAR => *
		Create comment token: T_DOC_COMMENT_WHITESPACE =>  
		Create comment token: T_DOC_COMMENT_STRING => Version: 1.0
		Create comment token: T_DOC_COMMENT_WHITESPACE => \n
		Create comment token: T_DOC_COMMENT_WHITESPACE =>  
		Create comment token: T_DOC_COMMENT_STAR => *
		Create comment token: T_DOC_COMMENT_WHITESPACE =>  
		Create comment token: T_DOC_COMMENT_STRING => License: GNU General Public License v2 or later
		Create comment token: T_DOC_COMMENT_WHITESPACE => \n
		Create comment token: T_DOC_COMMENT_WHITESPACE =>  
		Create comment token: T_DOC_COMMENT_STAR => *
		Create comment token: T_DOC_COMMENT_WHITESPACE =>  
		Create comment token: T_DOC_COMMENT_STRING => License URI: LICENSE
		Create comment token: T_DOC_COMMENT_WHITESPACE => \n
		Create comment token: T_DOC_COMMENT_WHITESPACE =>  
		Create comment token: T_DOC_COMMENT_STAR => *
		Create comment token: T_DOC_COMMENT_WHITESPACE =>  
		Create comment token: T_DOC_COMMENT_STRING => Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
		Create comment token: T_DOC_COMMENT_WHITESPACE => \n
		Create comment token: T_DOC_COMMENT_WHITESPACE =>  
		Create comment token: T_DOC_COMMENT_STAR => *
		Create comment token: T_DOC_COMMENT_WHITESPACE =>  
		Create comment token: T_DOC_COMMENT_STRING => This theme, like WordPress, is licensed under the GPL.
		Create comment token: T_DOC_COMMENT_WHITESPACE => \n
		Create comment token: T_DOC_COMMENT_WHITESPACE =>  
		Create comment token: T_DOC_COMMENT_STAR => *
		Create comment token: T_DOC_COMMENT_WHITESPACE =>  
		Create comment token: T_DOC_COMMENT_STRING => Use it to make something cool, have fun, and share what you've learned with others.
		Create comment token: T_DOC_COMMENT_WHITESPACE => \n
		Create comment token: T_DOC_COMMENT_WHITESPACE =>  
		Create comment token: T_DOC_COMMENT_STAR => *
		Create comment token: T_DOC_COMMENT_WHITESPACE =>  
		Create comment token: T_DOC_COMMENT_STRING => Twenty Nineteen is based on Underscores https://underscores.me/, (C) 2012-2018 Automattic, Inc.
		Create comment token: T_DOC_COMMENT_WHITESPACE => \n
		Create comment token: T_DOC_COMMENT_WHITESPACE =>  
		Create comment token: T_DOC_COMMENT_STAR => *
		Create comment token: T_DOC_COMMENT_WHITESPACE =>  
		Create comment token: T_DOC_COMMENT_STRING => Underscores is distributed under the terms of the GNU GPL v2 or later.
		Create comment token: T_DOC_COMMENT_WHITESPACE => \n
		Create comment token: T_DOC_COMMENT_WHITESPACE =>  
		Create comment token: T_DOC_COMMENT_STAR => *
		Create comment token: T_DOC_COMMENT_WHITESPACE =>  
		Create comment token: T_DOC_COMMENT_STRING => Normalizing styles have been helped along thanks to the fine work of
		Create comment token: T_DOC_COMMENT_WHITESPACE => \n
		Create comment token: T_DOC_COMMENT_WHITESPACE =>  
		Create comment token: T_DOC_COMMENT_STAR => *
		Create comment token: T_DOC_COMMENT_WHITESPACE =>  
		Create comment token: T_DOC_COMMENT_STRING => Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
		Create comment token: T_DOC_COMMENT_WHITESPACE => \n
		Create comment token: T_DOC_COMMENT_WHITESPACE =>  
		Create comment token: T_DOC_COMMENT_CLOSE_TAG => */
		*** END COMMENT TOKENIZING ***
	Process token [68]: T_WHITESPACE => \n\n
	Process token [69]: T_COMMENT => /* @codingStandardsChangeSetting WordPress.Utils.I18nTextDomainFixer old_text_domain false */
	Process token [70]: T_WHITESPACE => \n
	Process token [71]: T_COMMENT => /* @codingStandardsChangeSetting WordPress.Utils.I18nTextDomainFixer new_text_domain false */
	Process token [72]: T_WHITESPACE => \n
	Process token [73]: T_CLOSE_TAG => ?>
	*** END PHP TOKENIZING ***
	Process token 1: T_COMMENT => /* @codingStandardsChangeSetting WordPress.Utils.I18nTextDomainFixer old_text_domain twentyeleven */
	Process token 2: T_WHITESPACE => \n
	Process token 3: T_COMMENT => /* @codingStandardsChangeSetting WordPress.Utils.I18nTextDomainFixer new_text_domain twentyten */
	Process token 4: T_WHITESPACE => \n
	Process token 5: T_WHITESPACE => \n
	Process token 6: T_COMMENT => /*\n
	Process token 7: T_COMMENT => Theme Name: Correct text-domain.\n
	Process token 8: T_COMMENT => Theme URI: https://wordpress.org/themes/twentyten/\n
	Process token 9: T_COMMENT => Description: The 2010 theme for WordPress is stylish, customizable, simple, and readable -- make it yours with a custom menu, header image, and background. Twenty Ten supports six widgetized areas (two in the sidebar, four in the footer) and featured images (thumbnails for gallery posts and custom header images for posts and pages). It includes stylesheets for print and the admin Visual Editor, special styles for posts in the "Asides" and "Gallery" categories, and has an optional one-column page template that removes the sidebar.\n
	Process token 10: T_COMMENT => Author: the WordPress team\n
	Process token 11: T_COMMENT => Author URI: https://wordpress.org/\n
	Process token 12: T_COMMENT => Version: 2.5\n
	Process token 13: T_COMMENT => License: GNU General Public License v2 or later\n
	Process token 14: T_COMMENT => License URI: http://www.gnu.org/licenses/gpl-2.0.html\n
	Process token 15: T_COMMENT => Tags: blog, two-columns, custom-header, custom-background, threaded-comments, sticky-post, translation-ready, microformats, rtl-language-support, editor-style, custom-menu, flexible-header, featured-images, footer-widgets, featured-image-header\n
	Process token 16: T_COMMENT => Text Domain: twentyten\n
	Process token 17: T_COMMENT => */
	Process token 18: T_WHITESPACE => \n
	Process token 19: T_WHITESPACE => \n
	Process token 20: T_COMMENT => /* @codingStandardsChangeSetting WordPress.Utils.I18nTextDomainFixer old_text_domain _s */
	Process token 21: T_WHITESPACE => \n
	Process token 22: T_COMMENT => /* @codingStandardsChangeSetting WordPress.Utils.I18nTextDomainFixer new_text_domain something-else */
	Process token 23: T_WHITESPACE => \n
	Process token 24: T_WHITESPACE => \n
	Process token 25: T_COMMENT => /*!\n
	Process token 26: T_COMMENT => Theme Name: Text domain which should be fixed and checking that consequtive comments don't get mixed up.\n
	Process token 27: T_COMMENT => Theme URI: https://underscores.me/\n
	Process token 28: T_COMMENT => Author: Automattic\n
	Process token 29: T_COMMENT => Author URI: https://automattic.com/\n
	Process token 30: T_COMMENT => Description: Hi. I'm a starter theme called <code>_s</code>, or <em>underscores</em>, if you like. I'm a theme meant for hacking so don't use me as a <em>Parent Theme</em>. Instead try turning me into the next, most awesome, WordPress theme out there. That's what I'm here for.\n
	Process token 31: T_COMMENT => Version: 1.0.0\n
	Process token 32: T_COMMENT => License: GNU General Public License v2 or later\n
	Process token 33: T_COMMENT => License URI: LICENSE\n
	Process token 34: T_COMMENT => Text Domain: _s\n
	Process token 35: T_COMMENT => Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready\n
	Process token 36: T_COMMENT => \n
	Process token 37: T_COMMENT => This theme, like WordPress, is licensed under the GPL.\n
	Process token 38: T_COMMENT => Use it to make something cool, have fun, and share what you've learned with others.\n
	Process token 39: T_COMMENT => \n
	Process token 40: T_COMMENT => _s is based on Underscores https://underscores.me/, (C) 2012-2017 Automattic, Inc.\n
	Process token 41: T_COMMENT => Underscores is distributed under the terms of the GNU GPL v2 or later.\n
	Process token 42: T_COMMENT => \n
	Process token 43: T_COMMENT => Normalizing styles have been helped along thanks to the fine work of\n
	Process token 44: T_COMMENT => Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/\n
	Process token 45: T_COMMENT => */
	Process token 46: T_WHITESPACE => \n
	Process token 47: T_COMMENT => /*--------------------------------------------------------------\n
	Process token 48: T_COMMENT => >>> TABLE OF CONTENTS:\n
	Process token 49: T_COMMENT => ----------------------------------------------------------------\n
	Process token 50: T_COMMENT => # Normalize\n
	Process token 51: T_COMMENT => # Typography\n
	Process token 52: T_COMMENT => # Elements\n
	Process token 53: T_COMMENT => # Forms\n
	Process token 54: T_COMMENT => # Navigation\n
	Process token 55: T_COMMENT => \t## Links\n
	Process token 56: T_COMMENT => \t## Menus\n
	Process token 57: T_COMMENT => # Accessibility\n
	Process token 58: T_COMMENT => # Alignments\n
	Process token 59: T_COMMENT => # Clearings\n
	Process token 60: T_COMMENT => # Widgets\n
	Process token 61: T_COMMENT => # Content\n
	Process token 62: T_COMMENT => \t## Posts and pages\n
	Process token 63: T_COMMENT => \t## Comments\n
	Process token 64: T_COMMENT => # Infinite scroll\n
	Process token 65: T_COMMENT => # Media\n
	Process token 66: T_COMMENT => \t## Captions\n
	Process token 67: T_COMMENT => \t## Galleries\n
	Process token 68: T_COMMENT => --------------------------------------------------------------*/
	Process token 69: T_WHITESPACE => \n
	Process token 70: T_COMMENT => /*--------------------------------------------------------------\n
	Process token 71: T_COMMENT => # Normalize\n
	Process token 72: T_COMMENT => --------------------------------------------------------------*/
	Process token 73: T_WHITESPACE => \n
	Process token 74: T_COMMENT => /* normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
	Process token 75: T_WHITESPACE => \n
	Process token 76: T_WHITESPACE => \n
	Process token 77: T_COMMENT => /* Document\n
	Process token 78: T_COMMENT => \t ========================================================================== */
	Process token 79: T_WHITESPACE => \n
	Process token 80: T_WHITESPACE => \n
	Process token 81: T_DOC_COMMENT_OPEN_TAG => /**
	Process token 82: T_DOC_COMMENT_WHITESPACE => \n
	Process token 83: T_DOC_COMMENT_WHITESPACE =>  
	Process token 84: T_DOC_COMMENT_STAR => *
	Process token 85: T_DOC_COMMENT_WHITESPACE =>  
	Process token 86: T_DOC_COMMENT_STRING => 1. Correct the line height in all browsers.
	Process token 87: T_DOC_COMMENT_WHITESPACE => \n
	Process token 88: T_DOC_COMMENT_WHITESPACE =>  
	Process token 89: T_DOC_COMMENT_STAR => *
	Process token 90: T_DOC_COMMENT_WHITESPACE =>  
	Process token 91: T_DOC_COMMENT_STRING => 2. Prevent adjustments of font size after orientation changes in iOS.
	Process token 92: T_DOC_COMMENT_WHITESPACE => \n
	Process token 93: T_DOC_COMMENT_WHITESPACE =>  
	Process token 94: T_DOC_COMMENT_CLOSE_TAG => */
	Process token 95: T_WHITESPACE => \n
	Process token 96: T_WHITESPACE => \n
	Process token 97: T_STRING => html
	Process token 98: T_WHITESPACE =>  
	Process token 99: T_OPEN_CURLY_BRACKET => {
	Process token 100: T_WHITESPACE => \n
	Process token 101: T_WHITESPACE => \t
	Process token 102: T_STRING => line
	Process token 103: T_MINUS => -
	Process token 104: T_GOTO_LABEL => height:
	Process token 105: T_WHITESPACE =>  
	Process token 106: T_DNUMBER => 1.15
	Process token 107: T_SEMICOLON => ;
	Process token 108: T_WHITESPACE =>  
	Process token 109: T_COMMENT => /* 1 */
	Process token 110: T_WHITESPACE => \n
	Process token 111: T_WHITESPACE => \t
	Process token 112: T_MINUS => -
	Process token 113: T_STRING => webkit
	Process token 114: T_MINUS => -
	Process token 115: T_STRING => text
	Process token 116: T_MINUS => -
	Process token 117: T_STRING => size
	Process token 118: T_MINUS => -
	Process token 119: T_GOTO_LABEL => adjust:
	Process token 120: T_WHITESPACE =>  
	Process token 121: T_LNUMBER => 100
	Process token 122: T_MODULUS => %
	Process token 123: T_SEMICOLON => ;
	Process token 124: T_WHITESPACE =>  
	Process token 125: T_COMMENT => /* 2 */
	Process token 126: T_WHITESPACE => \n
	Process token 127: T_CLOSE_CURLY_BRACKET => }
	Process token 128: T_WHITESPACE => \n
	Process token 129: T_WHITESPACE => \n
	Process token 130: T_COMMENT => /* @codingStandardsChangeSetting WordPress.Utils.I18nTextDomainFixer new_text_domain twentyseventeen */
	Process token 131: T_WHITESPACE => \n
	Process token 132: T_WHITESPACE => \n
	Process token 133: T_COMMENT => /*\n
	Process token 134: T_COMMENT => Theme Name: Missing text domain.\n
	Process token 135: T_COMMENT => Theme URI: https://wordpress.org/themes/twentyseventeen/\n
	Process token 136: T_COMMENT => Author: the WordPress team\n
	Process token 137: T_COMMENT => Author URI: https://wordpress.org/\n
	Process token 138: T_COMMENT => Description: Twenty Seventeen brings your site to life with header video and immersive featured images. With a focus on business sites, it features multiple sections on the front page as well as widgets, navigation and social menus, a logo, and more. Personalize its asymmetrical grid with a custom color scheme and showcase your multimedia content with post formats. Our default theme for 2017 works great in many languages, for any abilities, and on any device.\n
	Process token 139: T_COMMENT => Version: 1.6\n
	Process token 140: T_COMMENT => License: GNU General Public License v2 or later\n
	Process token 141: T_COMMENT => License URI: http://www.gnu.org/licenses/gpl-2.0.html\n
	Process token 142: T_COMMENT => Tags: one-column, two-columns, right-sidebar, flexible-header, accessibility-ready, custom-colors, custom-header, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, post-formats, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready\n
	Process token 143: T_COMMENT => \n
	Process token 144: T_COMMENT => This theme, like WordPress, is licensed under the GPL.\n
	Process token 145: T_COMMENT => Use it to make something cool, have fun, and share what you've learned with others.\n
	Process token 146: T_COMMENT => */
	Process token 147: T_WHITESPACE => \n
	Process token 148: T_WHITESPACE => \n
	Process token 149: T_COMMENT => /*\n
	Process token 150: T_COMMENT =>  * Theme Name : Missing text domain, different comment format.\n
	Process token 151: T_COMMENT =>  * Theme URI  : https://wordpress.org/themes/twentyseventeen/\n
	Process token 152: T_COMMENT =>  * Author     : the WordPress team\n
	Process token 153: T_COMMENT =>  * Author URI : https://wordpress.org/\n
	Process token 154: T_COMMENT =>  * Description: Twenty Seventeen brings your site to life with header video and immersive featured images. With a focus on business sites, it features multiple sections on the front page as well as widgets, navigation and social menus, a logo, and more. Personalize its asymmetrical grid with a custom color scheme and showcase your multimedia content with post formats. Our default theme for 2017 works great in many languages, for any abilities, and on any device.\n
	Process token 155: T_COMMENT =>  * Version    : 1.6\n
	Process token 156: T_COMMENT =>  * License    : GNU General Public License v2 or later\n
	Process token 157: T_COMMENT =>  * License URI: http://www.gnu.org/licenses/gpl-2.0.html\n
	Process token 158: T_COMMENT =>  * Tags       : one-column, two-columns, right-sidebar, flexible-header, accessibility-ready, custom-colors, custom-header, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, post-formats, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready\n
	Process token 159: T_COMMENT =>  *\n
	Process token 160: T_COMMENT =>  * This theme, like WordPress, is licensed under the GPL.\n
	Process token 161: T_COMMENT =>  * Use it to make something cool, have fun, and share what you've learned with others.\n
	Process token 162: T_COMMENT =>  */
	Process token 163: T_WHITESPACE => \n
	Process token 164: T_WHITESPACE => \n
	Process token 165: T_DOC_COMMENT_OPEN_TAG => /**
	Process token 166: T_DOC_COMMENT_WHITESPACE => \n
	Process token 167: T_DOC_COMMENT_WHITESPACE =>  
	Process token 168: T_DOC_COMMENT_STAR => *
	Process token 169: T_DOC_COMMENT_WHITESPACE =>  
	Process token 170: T_DOC_COMMENT_STRING => Theme Name: Not the theme header (not enough headers found.
	Process token 171: T_DOC_COMMENT_WHITESPACE => \n
	Process token 172: T_DOC_COMMENT_WHITESPACE =>  
	Process token 173: T_DOC_COMMENT_CLOSE_TAG => */
	Process token 174: T_WHITESPACE => \n
	Process token 175: T_WHITESPACE => \n
	Process token 176: T_COMMENT => /*\n
	Process token 177: T_COMMENT => Theme Name: Missing text domain. Minimum headers.\n
	Process token 178: T_COMMENT => Theme URI: http://protected\n
	Process token 179: T_COMMENT => Description: http://thisshouldntbeaurl\n
	Process token 180: T_COMMENT => */
	Process token 181: T_WHITESPACE => \n
	Process token 182: T_WHITESPACE => \n
	Process token 183: T_COMMENT => /*\n
	Process token 184: T_COMMENT =>   Theme Name:       Missing text domain, different comment format, additional non-standard headers.\n
	Process token 185: T_COMMENT =>   Theme URI:        https://protected\n
	Process token 186: T_COMMENT =>   Author:           Lacy Morrow\n
	Process token 187: T_COMMENT =>   Author URI:       http://protected\n
	Process token 188: T_COMMENT =>   Description:      A Ghost-like WordPress theme. Casper (for WordPress) is a simple yet beautiful theme for bloggers. Inspired by the Ghost blogging platform, Casper is a WordPress port of the default theme by the same name. The goal of this project is to emulate the gorgeous theme while taking advantage of features exclusive to the WordPress framework. There are plenty of customization options included, accessible through the WordPress Customizer. Already included are hooks to serve responsive images appropriately and media queries to provide a fast and seamless experience from desktop to mobile. For questions, support, development instructions, or to contribute to the project visit [https://github.com/lacymorrow/casper]\n
	Process token 189: T_COMMENT =>   Version:          1.1.5\n
	Process token 190: T_COMMENT =>   License:          GNU General Public License v2.0\n
	Process token 191: T_COMMENT =>   License URI:      http://www.gnu.org/licenses/gpl-2.0.html\n
	Process token 192: T_COMMENT =>   Domain Path:      /languages/\n
	Process token 193: T_COMMENT =>   Tags:             responsive-layout, black, white, one-column, fluid-layout, custom-header, custom-menu, editor-style\n
	Process token 194: T_COMMENT =>   GitHub Theme URI: https://github.com/protected\n
	Process token 195: T_COMMENT =>   GitHub Branch:    master\n
	Process token 196: T_COMMENT =>   Casper is based on Underscores http://underscores.me/, (C) 2012-2014 Automattic, Inc.\n
	Process token 197: T_COMMENT => */
	Process token 198: T_WHITESPACE => \n
	Process token 199: T_WHITESPACE => \n
	Process token 200: T_DOC_COMMENT_OPEN_TAG => /**
	Process token 201: T_DOC_COMMENT_WHITESPACE => \n
	Process token 202: T_DOC_COMMENT_WHITESPACE =>  
	Process token 203: T_DOC_COMMENT_STAR => *
	Process token 204: T_DOC_COMMENT_WHITESPACE =>  
	Process token 205: T_DOC_COMMENT_STRING => Theme Name: Missing text domain. Docblock format.
	Process token 206: T_DOC_COMMENT_WHITESPACE => \n
	Process token 207: T_DOC_COMMENT_WHITESPACE =>  
	Process token 208: T_DOC_COMMENT_STAR => *
	Process token 209: T_DOC_COMMENT_WHITESPACE =>  
	Process token 210: T_DOC_COMMENT_STRING => Theme URI: https://github.com/WordPress/twentynineteen
	Process token 211: T_DOC_COMMENT_WHITESPACE => \n
	Process token 212: T_DOC_COMMENT_WHITESPACE =>  
	Process token 213: T_DOC_COMMENT_STAR => *
	Process token 214: T_DOC_COMMENT_WHITESPACE =>  
	Process token 215: T_DOC_COMMENT_STRING => Author: the WordPress team
	Process token 216: T_DOC_COMMENT_WHITESPACE => \n
	Process token 217: T_DOC_COMMENT_WHITESPACE =>  
	Process token 218: T_DOC_COMMENT_STAR => *
	Process token 219: T_DOC_COMMENT_WHITESPACE =>  
	Process token 220: T_DOC_COMMENT_STRING => Author URI: https://wordpress.org/
	Process token 221: T_DOC_COMMENT_WHITESPACE => \n
	Process token 222: T_DOC_COMMENT_WHITESPACE =>  
	Process token 223: T_DOC_COMMENT_STAR => *
	Process token 224: T_DOC_COMMENT_WHITESPACE =>  
	Process token 225: T_DOC_COMMENT_STRING => Description: A new Gutenberg-ready theme.
	Process token 226: T_DOC_COMMENT_WHITESPACE => \n
	Process token 227: T_DOC_COMMENT_WHITESPACE =>  
	Process token 228: T_DOC_COMMENT_STAR => *
	Process token 229: T_DOC_COMMENT_WHITESPACE =>  
	Process token 230: T_DOC_COMMENT_STRING => Requires at least: WordPress 4.9.6
	Process token 231: T_DOC_COMMENT_WHITESPACE => \n
	Process token 232: T_DOC_COMMENT_WHITESPACE =>  
	Process token 233: T_DOC_COMMENT_STAR => *
	Process token 234: T_DOC_COMMENT_WHITESPACE =>  
	Process token 235: T_DOC_COMMENT_STRING => Version: 1.0
	Process token 236: T_DOC_COMMENT_WHITESPACE => \n
	Process token 237: T_DOC_COMMENT_WHITESPACE =>  
	Process token 238: T_DOC_COMMENT_STAR => *
	Process token 239: T_DOC_COMMENT_WHITESPACE =>  
	Process token 240: T_DOC_COMMENT_STRING => License: GNU General Public License v2 or later
	Process token 241: T_DOC_COMMENT_WHITESPACE => \n
	Process token 242: T_DOC_COMMENT_WHITESPACE =>  
	Process token 243: T_DOC_COMMENT_STAR => *
	Process token 244: T_DOC_COMMENT_WHITESPACE =>  
	Process token 245: T_DOC_COMMENT_STRING => License URI: LICENSE
	Process token 246: T_DOC_COMMENT_WHITESPACE => \n
	Process token 247: T_DOC_COMMENT_WHITESPACE =>  
	Process token 248: T_DOC_COMMENT_STAR => *
	Process token 249: T_DOC_COMMENT_WHITESPACE =>  
	Process token 250: T_DOC_COMMENT_STRING => Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
	Process token 251: T_DOC_COMMENT_WHITESPACE => \n
	Process token 252: T_DOC_COMMENT_WHITESPACE =>  
	Process token 253: T_DOC_COMMENT_STAR => *
	Process token 254: T_DOC_COMMENT_WHITESPACE =>  
	Process token 255: T_DOC_COMMENT_STRING => This theme, like WordPress, is licensed under the GPL.
	Process token 256: T_DOC_COMMENT_WHITESPACE => \n
	Process token 257: T_DOC_COMMENT_WHITESPACE =>  
	Process token 258: T_DOC_COMMENT_STAR => *
	Process token 259: T_DOC_COMMENT_WHITESPACE =>  
	Process token 260: T_DOC_COMMENT_STRING => Use it to make something cool, have fun, and share what you've learned with others.
	Process token 261: T_DOC_COMMENT_WHITESPACE => \n
	Process token 262: T_DOC_COMMENT_WHITESPACE =>  
	Process token 263: T_DOC_COMMENT_STAR => *
	Process token 264: T_DOC_COMMENT_WHITESPACE =>  
	Process token 265: T_DOC_COMMENT_STRING => Twenty Nineteen is based on Underscores https://underscores.me/, (C) 2012-2018 Automattic, Inc.
	Process token 266: T_DOC_COMMENT_WHITESPACE => \n
	Process token 267: T_DOC_COMMENT_WHITESPACE =>  
	Process token 268: T_DOC_COMMENT_STAR => *
	Process token 269: T_DOC_COMMENT_WHITESPACE =>  
	Process token 270: T_DOC_COMMENT_STRING => Underscores is distributed under the terms of the GNU GPL v2 or later.
	Process token 271: T_DOC_COMMENT_WHITESPACE => \n
	Process token 272: T_DOC_COMMENT_WHITESPACE =>  
	Process token 273: T_DOC_COMMENT_STAR => *
	Process token 274: T_DOC_COMMENT_WHITESPACE =>  
	Process token 275: T_DOC_COMMENT_STRING => Normalizing styles have been helped along thanks to the fine work of
	Process token 276: T_DOC_COMMENT_WHITESPACE => \n
	Process token 277: T_DOC_COMMENT_WHITESPACE =>  
	Process token 278: T_DOC_COMMENT_STAR => *
	Process token 279: T_DOC_COMMENT_WHITESPACE =>  
	Process token 280: T_DOC_COMMENT_STRING => Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
	Process token 281: T_DOC_COMMENT_WHITESPACE => \n
	Process token 282: T_DOC_COMMENT_WHITESPACE =>  
	Process token 283: T_DOC_COMMENT_CLOSE_TAG => */
	Process token 284: T_WHITESPACE => \n
	Process token 285: T_WHITESPACE => \n
	Process token 286: T_COMMENT => /* @codingStandardsChangeSetting WordPress.Utils.I18nTextDomainFixer old_text_domain false */
	Process token 287: T_WHITESPACE => \n
	Process token 288: T_COMMENT => /* @codingStandardsChangeSetting WordPress.Utils.I18nTextDomainFixer new_text_domain false */
	Process token 289: T_WHITESPACE => \n
	Process token 290: T_CLOSE_TAG => ?>
	*** END CSS TOKENIZING 1ST PASS ***
	*** START CSS TOKENIZING 2ND PASS ***
	Process token 0: T_OPEN_TAG => 
	Process token 1: T_COMMENT => /* @codingStandardsChangeSetting WordPress.Utils.I18nTextDomainFixer old_text_domain twentyeleven */
	Process token 2: T_WHITESPACE => \n
	Process token 3: T_COMMENT => /* @codingStandardsChangeSetting WordPress.Utils.I18nTextDomainFixer new_text_domain twentyten */
	Process token 4: T_WHITESPACE => \n
	Process token 5: T_WHITESPACE => \n
	Process token 6: T_COMMENT => /*\n
	Process token 7: T_COMMENT => Theme Name: Correct text-domain.\n
	Process token 8: T_COMMENT => Theme URI: https://wordpress.org/themes/twentyten/\n
	Process token 9: T_COMMENT => Description: The 2010 theme for WordPress is stylish, customizable, simple, and readable -- make it yours with a custom menu, header image, and background. Twenty Ten supports six widgetized areas (two in the sidebar, four in the footer) and featured images (thumbnails for gallery posts and custom header images for posts and pages). It includes stylesheets for print and the admin Visual Editor, special styles for posts in the "Asides" and "Gallery" categories, and has an optional one-column page template that removes the sidebar.\n
	Process token 10: T_COMMENT => Author: the WordPress team\n
	Process token 11: T_COMMENT => Author URI: https://wordpress.org/\n
	Process token 12: T_COMMENT => Version: 2.5\n
	Process token 13: T_COMMENT => License: GNU General Public License v2 or later\n
	Process token 14: T_COMMENT => License URI: http://www.gnu.org/licenses/gpl-2.0.html\n
	Process token 15: T_COMMENT => Tags: blog, two-columns, custom-header, custom-background, threaded-comments, sticky-post, translation-ready, microformats, rtl-language-support, editor-style, custom-menu, flexible-header, featured-images, footer-widgets, featured-image-header\n
	Process token 16: T_COMMENT => Text Domain: twentyten\n
	Process token 17: T_COMMENT => */
	Process token 18: T_WHITESPACE => \n
	Process token 19: T_WHITESPACE => \n
	Process token 20: T_COMMENT => /* @codingStandardsChangeSetting WordPress.Utils.I18nTextDomainFixer old_text_domain _s */
	Process token 21: T_WHITESPACE => \n
	Process token 22: T_COMMENT => /* @codingStandardsChangeSetting WordPress.Utils.I18nTextDomainFixer new_text_domain something-else */
	Process token 23: T_WHITESPACE => \n
	Process token 24: T_WHITESPACE => \n
	Process token 25: T_COMMENT => /*!\n
	Process token 26: T_COMMENT => Theme Name: Text domain which should be fixed and checking that consequtive comments don't get mixed up.\n
	Process token 27: T_COMMENT => Theme URI: https://underscores.me/\n
	Process token 28: T_COMMENT => Author: Automattic\n
	Process token 29: T_COMMENT => Author URI: https://automattic.com/\n
	Process token 30: T_COMMENT => Description: Hi. I'm a starter theme called <code>_s</code>, or <em>underscores</em>, if you like. I'm a theme meant for hacking so don't use me as a <em>Parent Theme</em>. Instead try turning me into the next, most awesome, WordPress theme out there. That's what I'm here for.\n
	Process token 31: T_COMMENT => Version: 1.0.0\n
	Process token 32: T_COMMENT => License: GNU General Public License v2 or later\n
	Process token 33: T_COMMENT => License URI: LICENSE\n
	Process token 34: T_COMMENT => Text Domain: _s\n
	Process token 35: T_COMMENT => Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready\n
	Process token 36: T_COMMENT => \n
	Process token 37: T_COMMENT => This theme, like WordPress, is licensed under the GPL.\n
	Process token 38: T_COMMENT => Use it to make something cool, have fun, and share what you've learned with others.\n
	Process token 39: T_COMMENT => \n
	Process token 40: T_COMMENT => _s is based on Underscores https://underscores.me/, (C) 2012-2017 Automattic, Inc.\n
	Process token 41: T_COMMENT => Underscores is distributed under the terms of the GNU GPL v2 or later.\n
	Process token 42: T_COMMENT => \n
	Process token 43: T_COMMENT => Normalizing styles have been helped along thanks to the fine work of\n
	Process token 44: T_COMMENT => Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/\n
	Process token 45: T_COMMENT => */
	Process token 46: T_WHITESPACE => \n
	Process token 47: T_COMMENT => /*--------------------------------------------------------------\n
	Process token 48: T_COMMENT => >>> TABLE OF CONTENTS:\n
	Process token 49: T_COMMENT => ----------------------------------------------------------------\n
	Process token 50: T_COMMENT => # Normalize\n
	Process token 51: T_COMMENT => # Typography\n
	Process token 52: T_COMMENT => # Elements\n
	Process token 53: T_COMMENT => # Forms\n
	Process token 54: T_COMMENT => # Navigation\n
	Process token 55: T_COMMENT => \t## Links\n
	Process token 56: T_COMMENT => \t## Menus\n
	Process token 57: T_COMMENT => # Accessibility\n
	Process token 58: T_COMMENT => # Alignments\n
	Process token 59: T_COMMENT => # Clearings\n
	Process token 60: T_COMMENT => # Widgets\n
	Process token 61: T_COMMENT => # Content\n
	Process token 62: T_COMMENT => \t## Posts and pages\n
	Process token 63: T_COMMENT => \t## Comments\n
	Process token 64: T_COMMENT => # Infinite scroll\n
	Process token 65: T_COMMENT => # Media\n
	Process token 66: T_COMMENT => \t## Captions\n
	Process token 67: T_COMMENT => \t## Galleries\n
	Process token 68: T_COMMENT => --------------------------------------------------------------*/
	Process token 69: T_WHITESPACE => \n
	Process token 70: T_COMMENT => /*--------------------------------------------------------------\n
	Process token 71: T_COMMENT => # Normalize\n
	Process token 72: T_COMMENT => --------------------------------------------------------------*/
	Process token 73: T_WHITESPACE => \n
	Process token 74: T_COMMENT => /* normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
	Process token 75: T_WHITESPACE => \n
	Process token 76: T_WHITESPACE => \n
	Process token 77: T_COMMENT => /* Document\n
	Process token 78: T_COMMENT => \t ========================================================================== */
	Process token 79: T_WHITESPACE => \n
	Process token 80: T_WHITESPACE => \n
	Process token 81: T_DOC_COMMENT_OPEN_TAG => /**
	Process token 82: T_DOC_COMMENT_WHITESPACE => \n
	Process token 83: T_DOC_COMMENT_WHITESPACE =>  
	Process token 84: T_DOC_COMMENT_STAR => *
	Process token 85: T_DOC_COMMENT_WHITESPACE =>  
	Process token 86: T_DOC_COMMENT_STRING => 1. Correct the line height in all browsers.
	Process token 87: T_DOC_COMMENT_WHITESPACE => \n
	Process token 88: T_DOC_COMMENT_WHITESPACE =>  
	Process token 89: T_DOC_COMMENT_STAR => *
	Process token 90: T_DOC_COMMENT_WHITESPACE =>  
	Process token 91: T_DOC_COMMENT_STRING => 2. Prevent adjustments of font size after orientation changes in iOS.
	Process token 92: T_DOC_COMMENT_WHITESPACE => \n
	Process token 93: T_DOC_COMMENT_WHITESPACE =>  
	Process token 94: T_DOC_COMMENT_CLOSE_TAG => */
	Process token 95: T_WHITESPACE => \n
	Process token 96: T_WHITESPACE => \n
	Process token 97: T_STRING => html
	Process token 98: T_WHITESPACE =>  
	Process token 99: T_OPEN_CURLY_BRACKET => {
		* style definition opened *
	Process token 100: T_WHITESPACE => \n
	Process token 101: T_WHITESPACE => \t
	Process token 102: T_STRING => line
	Process token 103: T_MINUS => -
		* token is a string joiner; ignoring this and previous token
		=> token 104 content changed from "height" to "line-height"
	Process token 104: T_STRING => line-height
	Process token 105: T_COLON => :
		=> token 104 changed from T_STRING to T_STYLE
	Process token 106: T_WHITESPACE =>  
	Process token 107: T_DNUMBER => 1.15
	Process token 108: T_SEMICOLON => ;
	Process token 109: T_WHITESPACE =>  
	Process token 110: T_COMMENT => /* 1 */
	Process token 111: T_WHITESPACE => \n
	Process token 112: T_WHITESPACE => \t
	Process token 113: T_MINUS => -
	Process token 114: T_STRING => -webkit
	Process token 115: T_MINUS => -
		* token is a string joiner; ignoring this and previous token
		=> token 116 content changed from "text" to "-webkit-text"
	Process token 116: T_STRING => -webkit-text
	Process token 117: T_MINUS => -
		* token is a string joiner; ignoring this and previous token
		=> token 118 content changed from "size" to "-webkit-text-size"
	Process token 118: T_STRING => -webkit-text-size
	Process token 119: T_MINUS => -
		* token is a string joiner; ignoring this and previous token
		=> token 120 content changed from "adjust" to "-webkit-text-size-adjust"
	Process token 120: T_STRING => -webkit-text-size-adjust
	Process token 121: T_COLON => :
		=> token 120 changed from T_STRING to T_STYLE
	Process token 122: T_WHITESPACE =>  
	Process token 123: T_LNUMBER => 100
	Process token 124: T_MODULUS => %
	Process token 125: T_SEMICOLON => ;
	Process token 126: T_WHITESPACE =>  
	Process token 127: T_COMMENT => /* 2 */
	Process token 128: T_WHITESPACE => \n
	Process token 129: T_CLOSE_CURLY_BRACKET => }
		* style definition closed *
	Process token 130: T_WHITESPACE => \n
	Process token 131: T_WHITESPACE => \n
	Process token 132: T_COMMENT => /* @codingStandardsChangeSetting WordPress.Utils.I18nTextDomainFixer new_text_domain twentyseventeen */
	Process token 133: T_WHITESPACE => \n
	Process token 134: T_WHITESPACE => \n
	Process token 135: T_COMMENT => /*\n
	Process token 136: T_COMMENT => Theme Name: Missing text domain.\n
	Process token 137: T_COMMENT => Theme URI: https://wordpress.org/themes/twentyseventeen/\n
	Process token 138: T_COMMENT => Author: the WordPress team\n
	Process token 139: T_COMMENT => Author URI: https://wordpress.org/\n
	Process token 140: T_COMMENT => Description: Twenty Seventeen brings your site to life with header video and immersive featured images. With a focus on business sites, it features multiple sections on the front page as well as widgets, navigation and social menus, a logo, and more. Personalize its asymmetrical grid with a custom color scheme and showcase your multimedia content with post formats. Our default theme for 2017 works great in many languages, for any abilities, and on any device.\n
	Process token 141: T_COMMENT => Version: 1.6\n
	Process token 142: T_COMMENT => License: GNU General Public License v2 or later\n
	Process token 143: T_COMMENT => License URI: http://www.gnu.org/licenses/gpl-2.0.html\n
	Process token 144: T_COMMENT => Tags: one-column, two-columns, right-sidebar, flexible-header, accessibility-ready, custom-colors, custom-header, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, post-formats, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready\n
	Process token 145: T_COMMENT => \n
	Process token 146: T_COMMENT => This theme, like WordPress, is licensed under the GPL.\n
	Process token 147: T_COMMENT => Use it to make something cool, have fun, and share what you've learned with others.\n
	Process token 148: T_COMMENT => */
	Process token 149: T_WHITESPACE => \n
	Process token 150: T_WHITESPACE => \n
	Process token 151: T_COMMENT => /*\n
	Process token 152: T_COMMENT =>  * Theme Name : Missing text domain, different comment format.\n
	Process token 153: T_COMMENT =>  * Theme URI  : https://wordpress.org/themes/twentyseventeen/\n
	Process token 154: T_COMMENT =>  * Author     : the WordPress team\n
	Process token 155: T_COMMENT =>  * Author URI : https://wordpress.org/\n
	Process token 156: T_COMMENT =>  * Description: Twenty Seventeen brings your site to life with header video and immersive featured images. With a focus on business sites, it features multiple sections on the front page as well as widgets, navigation and social menus, a logo, and more. Personalize its asymmetrical grid with a custom color scheme and showcase your multimedia content with post formats. Our default theme for 2017 works great in many languages, for any abilities, and on any device.\n
	Process token 157: T_COMMENT =>  * Version    : 1.6\n
	Process token 158: T_COMMENT =>  * License    : GNU General Public License v2 or later\n
	Process token 159: T_COMMENT =>  * License URI: http://www.gnu.org/licenses/gpl-2.0.html\n
	Process token 160: T_COMMENT =>  * Tags       : one-column, two-columns, right-sidebar, flexible-header, accessibility-ready, custom-colors, custom-header, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, post-formats, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready\n
	Process token 161: T_COMMENT =>  *\n
	Process token 162: T_COMMENT =>  * This theme, like WordPress, is licensed under the GPL.\n
	Process token 163: T_COMMENT =>  * Use it to make something cool, have fun, and share what you've learned with others.\n
	Process token 164: T_COMMENT =>  */
	Process token 165: T_WHITESPACE => \n
	Process token 166: T_WHITESPACE => \n
	Process token 167: T_DOC_COMMENT_OPEN_TAG => /**
	Process token 168: T_DOC_COMMENT_WHITESPACE => \n
	Process token 169: T_DOC_COMMENT_WHITESPACE =>  
	Process token 170: T_DOC_COMMENT_STAR => *
	Process token 171: T_DOC_COMMENT_WHITESPACE =>  
	Process token 172: T_DOC_COMMENT_STRING => Theme Name: Not the theme header (not enough headers found.
	Process token 173: T_DOC_COMMENT_WHITESPACE => \n
	Process token 174: T_DOC_COMMENT_WHITESPACE =>  
	Process token 175: T_DOC_COMMENT_CLOSE_TAG => */
	Process token 176: T_WHITESPACE => \n
	Process token 177: T_WHITESPACE => \n
	Process token 178: T_COMMENT => /*\n
	Process token 179: T_COMMENT => Theme Name: Missing text domain. Minimum headers.\n
	Process token 180: T_COMMENT => Theme URI: http://protected\n
	Process token 181: T_COMMENT => Description: http://thisshouldntbeaurl\n
	Process token 182: T_COMMENT => */
	Process token 183: T_WHITESPACE => \n
	Process token 184: T_WHITESPACE => \n
	Process token 185: T_COMMENT => /*\n
	Process token 186: T_COMMENT =>   Theme Name:       Missing text domain, different comment format, additional non-standard headers.\n
	Process token 187: T_COMMENT =>   Theme URI:        https://protected\n
	Process token 188: T_COMMENT =>   Author:           Lacy Morrow\n
	Process token 189: T_COMMENT =>   Author URI:       http://protected\n
	Process token 190: T_COMMENT =>   Description:      A Ghost-like WordPress theme. Casper (for WordPress) is a simple yet beautiful theme for bloggers. Inspired by the Ghost blogging platform, Casper is a WordPress port of the default theme by the same name. The goal of this project is to emulate the gorgeous theme while taking advantage of features exclusive to the WordPress framework. There are plenty of customization options included, accessible through the WordPress Customizer. Already included are hooks to serve responsive images appropriately and media queries to provide a fast and seamless experience from desktop to mobile. For questions, support, development instructions, or to contribute to the project visit [https://github.com/lacymorrow/casper]\n
	Process token 191: T_COMMENT =>   Version:          1.1.5\n
	Process token 192: T_COMMENT =>   License:          GNU General Public License v2.0\n
	Process token 193: T_COMMENT =>   License URI:      http://www.gnu.org/licenses/gpl-2.0.html\n
	Process token 194: T_COMMENT =>   Domain Path:      /languages/\n
	Process token 195: T_COMMENT =>   Tags:             responsive-layout, black, white, one-column, fluid-layout, custom-header, custom-menu, editor-style\n
	Process token 196: T_COMMENT =>   GitHub Theme URI: https://github.com/protected\n
	Process token 197: T_COMMENT =>   GitHub Branch:    master\n
	Process token 198: T_COMMENT =>   Casper is based on Underscores http://underscores.me/, (C) 2012-2014 Automattic, Inc.\n
	Process token 199: T_COMMENT => */
	Process token 200: T_WHITESPACE => \n
	Process token 201: T_WHITESPACE => \n
	Process token 202: T_DOC_COMMENT_OPEN_TAG => /**
	Process token 203: T_DOC_COMMENT_WHITESPACE => \n
	Process token 204: T_DOC_COMMENT_WHITESPACE =>  
	Process token 205: T_DOC_COMMENT_STAR => *
	Process token 206: T_DOC_COMMENT_WHITESPACE =>  
	Process token 207: T_DOC_COMMENT_STRING => Theme Name: Missing text domain. Docblock format.
	Process token 208: T_DOC_COMMENT_WHITESPACE => \n
	Process token 209: T_DOC_COMMENT_WHITESPACE =>  
	Process token 210: T_DOC_COMMENT_STAR => *
	Process token 211: T_DOC_COMMENT_WHITESPACE =>  
	Process token 212: T_DOC_COMMENT_STRING => Theme URI: https://github.com/WordPress/twentynineteen
	Process token 213: T_DOC_COMMENT_WHITESPACE => \n
	Process token 214: T_DOC_COMMENT_WHITESPACE =>  
	Process token 215: T_DOC_COMMENT_STAR => *
	Process token 216: T_DOC_COMMENT_WHITESPACE =>  
	Process token 217: T_DOC_COMMENT_STRING => Author: the WordPress team
	Process token 218: T_DOC_COMMENT_WHITESPACE => \n
	Process token 219: T_DOC_COMMENT_WHITESPACE =>  
	Process token 220: T_DOC_COMMENT_STAR => *
	Process token 221: T_DOC_COMMENT_WHITESPACE =>  
	Process token 222: T_DOC_COMMENT_STRING => Author URI: https://wordpress.org/
	Process token 223: T_DOC_COMMENT_WHITESPACE => \n
	Process token 224: T_DOC_COMMENT_WHITESPACE =>  
	Process token 225: T_DOC_COMMENT_STAR => *
	Process token 226: T_DOC_COMMENT_WHITESPACE =>  
	Process token 227: T_DOC_COMMENT_STRING => Description: A new Gutenberg-ready theme.
	Process token 228: T_DOC_COMMENT_WHITESPACE => \n
	Process token 229: T_DOC_COMMENT_WHITESPACE =>  
	Process token 230: T_DOC_COMMENT_STAR => *
	Process token 231: T_DOC_COMMENT_WHITESPACE =>  
	Process token 232: T_DOC_COMMENT_STRING => Requires at least: WordPress 4.9.6
	Process token 233: T_DOC_COMMENT_WHITESPACE => \n
	Process token 234: T_DOC_COMMENT_WHITESPACE =>  
	Process token 235: T_DOC_COMMENT_STAR => *
	Process token 236: T_DOC_COMMENT_WHITESPACE =>  
	Process token 237: T_DOC_COMMENT_STRING => Version: 1.0
	Process token 238: T_DOC_COMMENT_WHITESPACE => \n
	Process token 239: T_DOC_COMMENT_WHITESPACE =>  
	Process token 240: T_DOC_COMMENT_STAR => *
	Process token 241: T_DOC_COMMENT_WHITESPACE =>  
	Process token 242: T_DOC_COMMENT_STRING => License: GNU General Public License v2 or later
	Process token 243: T_DOC_COMMENT_WHITESPACE => \n
	Process token 244: T_DOC_COMMENT_WHITESPACE =>  
	Process token 245: T_DOC_COMMENT_STAR => *
	Process token 246: T_DOC_COMMENT_WHITESPACE =>  
	Process token 247: T_DOC_COMMENT_STRING => License URI: LICENSE
	Process token 248: T_DOC_COMMENT_WHITESPACE => \n
	Process token 249: T_DOC_COMMENT_WHITESPACE =>  
	Process token 250: T_DOC_COMMENT_STAR => *
	Process token 251: T_DOC_COMMENT_WHITESPACE =>  
	Process token 252: T_DOC_COMMENT_STRING => Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
	Process token 253: T_DOC_COMMENT_WHITESPACE => \n
	Process token 254: T_DOC_COMMENT_WHITESPACE =>  
	Process token 255: T_DOC_COMMENT_STAR => *
	Process token 256: T_DOC_COMMENT_WHITESPACE =>  
	Process token 257: T_DOC_COMMENT_STRING => This theme, like WordPress, is licensed under the GPL.
	Process token 258: T_DOC_COMMENT_WHITESPACE => \n
	Process token 259: T_DOC_COMMENT_WHITESPACE =>  
	Process token 260: T_DOC_COMMENT_STAR => *
	Process token 261: T_DOC_COMMENT_WHITESPACE =>  
	Process token 262: T_DOC_COMMENT_STRING => Use it to make something cool, have fun, and share what you've learned with others.
	Process token 263: T_DOC_COMMENT_WHITESPACE => \n
	Process token 264: T_DOC_COMMENT_WHITESPACE =>  
	Process token 265: T_DOC_COMMENT_STAR => *
	Process token 266: T_DOC_COMMENT_WHITESPACE =>  
	Process token 267: T_DOC_COMMENT_STRING => Twenty Nineteen is based on Underscores https://underscores.me/, (C) 2012-2018 Automattic, Inc.
	Process token 268: T_DOC_COMMENT_WHITESPACE => \n
	Process token 269: T_DOC_COMMENT_WHITESPACE =>  
	Process token 270: T_DOC_COMMENT_STAR => *
	Process token 271: T_DOC_COMMENT_WHITESPACE =>  
	Process token 272: T_DOC_COMMENT_STRING => Underscores is distributed under the terms of the GNU GPL v2 or later.
	Process token 273: T_DOC_COMMENT_WHITESPACE => \n
	Process token 274: T_DOC_COMMENT_WHITESPACE =>  
	Process token 275: T_DOC_COMMENT_STAR => *
	Process token 276: T_DOC_COMMENT_WHITESPACE =>  
	Process token 277: T_DOC_COMMENT_STRING => Normalizing styles have been helped along thanks to the fine work of
	Process token 278: T_DOC_COMMENT_WHITESPACE => \n
	Process token 279: T_DOC_COMMENT_WHITESPACE =>  
	Process token 280: T_DOC_COMMENT_STAR => *
	Process token 281: T_DOC_COMMENT_WHITESPACE =>  
	Process token 282: T_DOC_COMMENT_STRING => Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
	Process token 283: T_DOC_COMMENT_WHITESPACE => \n
	Process token 284: T_DOC_COMMENT_WHITESPACE =>  
	Process token 285: T_DOC_COMMENT_CLOSE_TAG => */
	Process token 286: T_WHITESPACE => \n
	Process token 287: T_WHITESPACE => \n
	Process token 288: T_COMMENT => /* @codingStandardsChangeSetting WordPress.Utils.I18nTextDomainFixer old_text_domain false */
	Process token 289: T_WHITESPACE => \n
	Process token 290: T_COMMENT => /* @codingStandardsChangeSetting WordPress.Utils.I18nTextDomainFixer new_text_domain false */
	Process token 291: T_WHITESPACE => \n
	Process token 292: T_CLOSE_TAG => ?>
	*** END CSS TOKENIZING 2ND PASS ***
	*** START TOKEN MAP ***
	=> Found curly bracket opener at 99
	=> Found curly bracket closer at 120 for 99
	*** END TOKEN MAP ***
	*** START SCOPE MAP ***
	*** END SCOPE MAP ***
	*** START LEVEL MAP ***
	Process token 0 on line 1 [col:1;len:0;lvl:0;]: T_OPEN_TAG => 
	Process token 1 on line 1 [col:1;len:100;lvl:0;]: T_COMMENT => /* @codingStandardsChangeSetting WordPress.Utils.I18nTextDomainFixer old_text_domain twentyeleven */
	Process token 2 on line 1 [col:101;len:0;lvl:0;]: T_WHITESPACE => \n
	Process token 3 on line 2 [col:1;len:97;lvl:0;]: T_COMMENT => /* @codingStandardsChangeSetting WordPress.Utils.I18nTextDomainFixer new_text_domain twentyten */
	Process token 4 on line 2 [col:98;len:0;lvl:0;]: T_WHITESPACE => \n
	Process token 5 on line 3 [col:1;len:0;lvl:0;]: T_WHITESPACE => \n
	Process token 6 on line 4 [col:1;len:2;lvl:0;]: T_COMMENT => /*\n
	Process token 7 on line 5 [col:1;len:32;lvl:0;]: T_COMMENT => Theme Name: Correct text-domain.\n
	Process token 8 on line 6 [col:1;len:50;lvl:0;]: T_COMMENT => Theme URI: https://wordpress.org/themes/twentyten/\n
	Process token 9 on line 7 [col:1;len:535;lvl:0;]: T_COMMENT => Description: The 2010 theme for WordPress is stylish, customizable, simple, and readable -- make it yours with a custom menu, header image, and background. Twenty Ten supports six widgetized areas (two in the sidebar, four in the footer) and featured images (thumbnails for gallery posts and custom header images for posts and pages). It includes stylesheets for print and the admin Visual Editor, special styles for posts in the "Asides" and "Gallery" categories, and has an optional one-column page template that removes the sidebar.\n
	Process token 10 on line 8 [col:1;len:26;lvl:0;]: T_COMMENT => Author: the WordPress team\n
	Process token 11 on line 9 [col:1;len:34;lvl:0;]: T_COMMENT => Author URI: https://wordpress.org/\n
	Process token 12 on line 10 [col:1;len:12;lvl:0;]: T_COMMENT => Version: 2.5\n
	Process token 13 on line 11 [col:1;len:47;lvl:0;]: T_COMMENT => License: GNU General Public License v2 or later\n
	Process token 14 on line 12 [col:1;len:53;lvl:0;]: T_COMMENT => License URI: http://www.gnu.org/licenses/gpl-2.0.html\n
	Process token 15 on line 13 [col:1;len:244;lvl:0;]: T_COMMENT => Tags: blog, two-columns, custom-header, custom-background, threaded-comments, sticky-post, translation-ready, microformats, rtl-language-support, editor-style, custom-menu, flexible-header, featured-images, footer-widgets, featured-image-header\n
	Process token 16 on line 14 [col:1;len:22;lvl:0;]: T_COMMENT => Text Domain: twentyten\n
	Process token 17 on line 15 [col:1;len:2;lvl:0;]: T_COMMENT => */
	Process token 18 on line 15 [col:3;len:0;lvl:0;]: T_WHITESPACE => \n
	Process token 19 on line 16 [col:1;len:0;lvl:0;]: T_WHITESPACE => \n
	Process token 20 on line 17 [col:1;len:90;lvl:0;]: T_COMMENT => /* @codingStandardsChangeSetting WordPress.Utils.I18nTextDomainFixer old_text_domain _s */
	Process token 21 on line 17 [col:91;len:0;lvl:0;]: T_WHITESPACE => \n
	Process token 22 on line 18 [col:1;len:102;lvl:0;]: T_COMMENT => /* @codingStandardsChangeSetting WordPress.Utils.I18nTextDomainFixer new_text_domain something-else */
	Process token 23 on line 18 [col:103;len:0;lvl:0;]: T_WHITESPACE => \n
	Process token 24 on line 19 [col:1;len:0;lvl:0;]: T_WHITESPACE => \n
	Process token 25 on line 20 [col:1;len:3;lvl:0;]: T_COMMENT => /*!\n
	Process token 26 on line 21 [col:1;len:104;lvl:0;]: T_COMMENT => Theme Name: Text domain which should be fixed and checking that consequtive comments don't get mixed up.\n
	Process token 27 on line 22 [col:1;len:34;lvl:0;]: T_COMMENT => Theme URI: https://underscores.me/\n
	Process token 28 on line 23 [col:1;len:18;lvl:0;]: T_COMMENT => Author: Automattic\n
	Process token 29 on line 24 [col:1;len:35;lvl:0;]: T_COMMENT => Author URI: https://automattic.com/\n
	Process token 30 on line 25 [col:1;len:277;lvl:0;]: T_COMMENT => Description: Hi. I'm a starter theme called <code>_s</code>, or <em>underscores</em>, if you like. I'm a theme meant for hacking so don't use me as a <em>Parent Theme</em>. Instead try turning me into the next, most awesome, WordPress theme out there. That's what I'm here for.\n
	Process token 31 on line 26 [col:1;len:14;lvl:0;]: T_COMMENT => Version: 1.0.0\n
	Process token 32 on line 27 [col:1;len:47;lvl:0;]: T_COMMENT => License: GNU General Public License v2 or later\n
	Process token 33 on line 28 [col:1;len:20;lvl:0;]: T_COMMENT => License URI: LICENSE\n
	Process token 34 on line 29 [col:1;len:15;lvl:0;]: T_COMMENT => Text Domain: _s\n
	Process token 35 on line 30 [col:1;len:104;lvl:0;]: T_COMMENT => Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready\n
	Process token 36 on line 31 [col:1;len:0;lvl:0;]: T_COMMENT => \n
	Process token 37 on line 32 [col:1;len:54;lvl:0;]: T_COMMENT => This theme, like WordPress, is licensed under the GPL.\n
	Process token 38 on line 33 [col:1;len:83;lvl:0;]: T_COMMENT => Use it to make something cool, have fun, and share what you've learned with others.\n
	Process token 39 on line 34 [col:1;len:0;lvl:0;]: T_COMMENT => \n
	Process token 40 on line 35 [col:1;len:82;lvl:0;]: T_COMMENT => _s is based on Underscores https://underscores.me/, (C) 2012-2017 Automattic, Inc.\n
	Process token 41 on line 36 [col:1;len:70;lvl:0;]: T_COMMENT => Underscores is distributed under the terms of the GNU GPL v2 or later.\n
	Process token 42 on line 37 [col:1;len:0;lvl:0;]: T_COMMENT => \n
	Process token 43 on line 38 [col:1;len:68;lvl:0;]: T_COMMENT => Normalizing styles have been helped along thanks to the fine work of\n
	Process token 44 on line 39 [col:1;len:76;lvl:0;]: T_COMMENT => Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/\n
	Process token 45 on line 40 [col:1;len:2;lvl:0;]: T_COMMENT => */
	Process token 46 on line 40 [col:3;len:0;lvl:0;]: T_WHITESPACE => \n
	Process token 47 on line 41 [col:1;len:64;lvl:0;]: T_COMMENT => /*--------------------------------------------------------------\n
	Process token 48 on line 42 [col:1;len:22;lvl:0;]: T_COMMENT => >>> TABLE OF CONTENTS:\n
	Process token 49 on line 43 [col:1;len:64;lvl:0;]: T_COMMENT => ----------------------------------------------------------------\n
	Process token 50 on line 44 [col:1;len:11;lvl:0;]: T_COMMENT => # Normalize\n
	Process token 51 on line 45 [col:1;len:12;lvl:0;]: T_COMMENT => # Typography\n
	Process token 52 on line 46 [col:1;len:10;lvl:0;]: T_COMMENT => # Elements\n
	Process token 53 on line 47 [col:1;len:7;lvl:0;]: T_COMMENT => # Forms\n
	Process token 54 on line 48 [col:1;len:12;lvl:0;]: T_COMMENT => # Navigation\n
	Process token 55 on line 49 [col:1;len:9;lvl:0;]: T_COMMENT => \t## Links\n
	Process token 56 on line 50 [col:1;len:9;lvl:0;]: T_COMMENT => \t## Menus\n
	Process token 57 on line 51 [col:1;len:15;lvl:0;]: T_COMMENT => # Accessibility\n
	Process token 58 on line 52 [col:1;len:12;lvl:0;]: T_COMMENT => # Alignments\n
	Process token 59 on line 53 [col:1;len:11;lvl:0;]: T_COMMENT => # Clearings\n
	Process token 60 on line 54 [col:1;len:9;lvl:0;]: T_COMMENT => # Widgets\n
	Process token 61 on line 55 [col:1;len:9;lvl:0;]: T_COMMENT => # Content\n
	Process token 62 on line 56 [col:1;len:19;lvl:0;]: T_COMMENT => \t## Posts and pages\n
	Process token 63 on line 57 [col:1;len:12;lvl:0;]: T_COMMENT => \t## Comments\n
	Process token 64 on line 58 [col:1;len:17;lvl:0;]: T_COMMENT => # Infinite scroll\n
	Process token 65 on line 59 [col:1;len:7;lvl:0;]: T_COMMENT => # Media\n
	Process token 66 on line 60 [col:1;len:12;lvl:0;]: T_COMMENT => \t## Captions\n
	Process token 67 on line 61 [col:1;len:13;lvl:0;]: T_COMMENT => \t## Galleries\n
	Process token 68 on line 62 [col:1;len:64;lvl:0;]: T_COMMENT => --------------------------------------------------------------*/
	Process token 69 on line 62 [col:65;len:0;lvl:0;]: T_WHITESPACE => \n
	Process token 70 on line 63 [col:1;len:64;lvl:0;]: T_COMMENT => /*--------------------------------------------------------------\n
	Process token 71 on line 64 [col:1;len:11;lvl:0;]: T_COMMENT => # Normalize\n
	Process token 72 on line 65 [col:1;len:64;lvl:0;]: T_COMMENT => --------------------------------------------------------------*/
	Process token 73 on line 65 [col:65;len:0;lvl:0;]: T_WHITESPACE => \n
	Process token 74 on line 66 [col:1;len:75;lvl:0;]: T_COMMENT => /* normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
	Process token 75 on line 66 [col:76;len:0;lvl:0;]: T_WHITESPACE => \n
	Process token 76 on line 67 [col:1;len:0;lvl:0;]: T_WHITESPACE => \n
	Process token 77 on line 68 [col:1;len:11;lvl:0;]: T_COMMENT => /* Document\n
	Process token 78 on line 69 [col:1;len:79;lvl:0;]: T_COMMENT => \t ========================================================================== */
	Process token 79 on line 69 [col:80;len:0;lvl:0;]: T_WHITESPACE => \n
	Process token 80 on line 70 [col:1;len:0;lvl:0;]: T_WHITESPACE => \n
	Process token 81 on line 71 [col:1;len:3;lvl:0;]: T_DOC_COMMENT_OPEN_TAG => /**
	Process token 82 on line 71 [col:4;len:0;lvl:0;]: T_DOC_COMMENT_WHITESPACE => \n
	Process token 83 on line 72 [col:1;len:1;lvl:0;]: T_DOC_COMMENT_WHITESPACE =>  
	Process token 84 on line 72 [col:2;len:1;lvl:0;]: T_DOC_COMMENT_STAR => *
	Process token 85 on line 72 [col:3;len:1;lvl:0;]: T_DOC_COMMENT_WHITESPACE =>  
	Process token 86 on line 72 [col:4;len:43;lvl:0;]: T_DOC_COMMENT_STRING => 1. Correct the line height in all browsers.
	Process token 87 on line 72 [col:47;len:0;lvl:0;]: T_DOC_COMMENT_WHITESPACE => \n
	Process token 88 on line 73 [col:1;len:1;lvl:0;]: T_DOC_COMMENT_WHITESPACE =>  
	Process token 89 on line 73 [col:2;len:1;lvl:0;]: T_DOC_COMMENT_STAR => *
	Process token 90 on line 73 [col:3;len:1;lvl:0;]: T_DOC_COMMENT_WHITESPACE =>  
	Process token 91 on line 73 [col:4;len:69;lvl:0;]: T_DOC_COMMENT_STRING => 2. Prevent adjustments of font size after orientation changes in iOS.
	Process token 92 on line 73 [col:73;len:0;lvl:0;]: T_DOC_COMMENT_WHITESPACE => \n
	Process token 93 on line 74 [col:1;len:1;lvl:0;]: T_DOC_COMMENT_WHITESPACE =>  
	Process token 94 on line 74 [col:2;len:2;lvl:0;]: T_DOC_COMMENT_CLOSE_TAG => */
	Process token 95 on line 74 [col:4;len:0;lvl:0;]: T_WHITESPACE => \n
	Process token 96 on line 75 [col:1;len:0;lvl:0;]: T_WHITESPACE => \n
	Process token 97 on line 76 [col:1;len:4;lvl:0;]: T_STRING => html
	Process token 98 on line 76 [col:5;len:1;lvl:0;]: T_WHITESPACE =>  
	Process token 99 on line 76 [col:6;len:1;lvl:0;]: T_OPEN_CURLY_BRACKET => {
	Process token 100 on line 76 [col:7;len:0;lvl:0;]: T_WHITESPACE => \n
	Process token 101 on line 77 [col:1;len:1;lvl:0;]: T_WHITESPACE => \t
	Process token 102 on line 77 [col:2;len:11;lvl:0;]: T_STYLE => line-height
	Process token 103 on line 77 [col:13;len:1;lvl:0;]: T_COLON => :
	Process token 104 on line 77 [col:14;len:1;lvl:0;]: T_WHITESPACE =>  
	Process token 105 on line 77 [col:15;len:4;lvl:0;]: T_DNUMBER => 1.15
	Process token 106 on line 77 [col:19;len:1;lvl:0;]: T_SEMICOLON => ;
	Process token 107 on line 77 [col:20;len:1;lvl:0;]: T_WHITESPACE =>  
	Process token 108 on line 77 [col:21;len:7;lvl:0;]: T_COMMENT => /* 1 */
	Process token 109 on line 77 [col:28;len:0;lvl:0;]: T_WHITESPACE => \n
	Process token 110 on line 78 [col:1;len:1;lvl:0;]: T_WHITESPACE => \t
	Process token 111 on line 78 [col:2;len:24;lvl:0;]: T_STYLE => -webkit-text-size-adjust
	Process token 112 on line 78 [col:26;len:1;lvl:0;]: T_COLON => :
	Process token 113 on line 78 [col:27;len:1;lvl:0;]: T_WHITESPACE =>  
	Process token 114 on line 78 [col:28;len:3;lvl:0;]: T_LNUMBER => 100
	Process token 115 on line 78 [col:31;len:1;lvl:0;]: T_MODULUS => %
	Process token 116 on line 78 [col:32;len:1;lvl:0;]: T_SEMICOLON => ;
	Process token 117 on line 78 [col:33;len:1;lvl:0;]: T_WHITESPACE =>  
	Process token 118 on line 78 [col:34;len:7;lvl:0;]: T_COMMENT => /* 2 */
	Process token 119 on line 78 [col:41;len:0;lvl:0;]: T_WHITESPACE => \n
	Process token 120 on line 79 [col:1;len:1;lvl:0;]: T_CLOSE_CURLY_BRACKET => }
	Process token 121 on line 79 [col:2;len:0;lvl:0;]: T_WHITESPACE => \n
	Process token 122 on line 80 [col:1;len:0;lvl:0;]: T_WHITESPACE => \n
	Process token 123 on line 81 [col:1;len:103;lvl:0;]: T_COMMENT => /* @codingStandardsChangeSetting WordPress.Utils.I18nTextDomainFixer new_text_domain twentyseventeen */
	Process token 124 on line 81 [col:104;len:0;lvl:0;]: T_WHITESPACE => \n
	Process token 125 on line 82 [col:1;len:0;lvl:0;]: T_WHITESPACE => \n
	Process token 126 on line 83 [col:1;len:2;lvl:0;]: T_COMMENT => /*\n
	Process token 127 on line 84 [col:1;len:32;lvl:0;]: T_COMMENT => Theme Name: Missing text domain.\n
	Process token 128 on line 85 [col:1;len:56;lvl:0;]: T_COMMENT => Theme URI: https://wordpress.org/themes/twentyseventeen/\n
	Process token 129 on line 86 [col:1;len:26;lvl:0;]: T_COMMENT => Author: the WordPress team\n
	Process token 130 on line 87 [col:1;len:34;lvl:0;]: T_COMMENT => Author URI: https://wordpress.org/\n
	Process token 131 on line 88 [col:1;len:463;lvl:0;]: T_COMMENT => Description: Twenty Seventeen brings your site to life with header video and immersive featured images. With a focus on business sites, it features multiple sections on the front page as well as widgets, navigation and social menus, a logo, and more. Personalize its asymmetrical grid with a custom color scheme and showcase your multimedia content with post formats. Our default theme for 2017 works great in many languages, for any abilities, and on any device.\n
	Process token 132 on line 89 [col:1;len:12;lvl:0;]: T_COMMENT => Version: 1.6\n
	Process token 133 on line 90 [col:1;len:47;lvl:0;]: T_COMMENT => License: GNU General Public License v2 or later\n
	Process token 134 on line 91 [col:1;len:53;lvl:0;]: T_COMMENT => License URI: http://www.gnu.org/licenses/gpl-2.0.html\n
	Process token 135 on line 92 [col:1;len:287;lvl:0;]: T_COMMENT => Tags: one-column, two-columns, right-sidebar, flexible-header, accessibility-ready, custom-colors, custom-header, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, post-formats, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready\n
	Process token 136 on line 93 [col:1;len:0;lvl:0;]: T_COMMENT => \n
	Process token 137 on line 94 [col:1;len:54;lvl:0;]: T_COMMENT => This theme, like WordPress, is licensed under the GPL.\n
	Process token 138 on line 95 [col:1;len:83;lvl:0;]: T_COMMENT => Use it to make something cool, have fun, and share what you've learned with others.\n
	Process token 139 on line 96 [col:1;len:2;lvl:0;]: T_COMMENT => */
	Process token 140 on line 96 [col:3;len:0;lvl:0;]: T_WHITESPACE => \n
	Process token 141 on line 97 [col:1;len:0;lvl:0;]: T_WHITESPACE => \n
	Process token 142 on line 98 [col:1;len:2;lvl:0;]: T_COMMENT => /*\n
	Process token 143 on line 99 [col:1;len:62;lvl:0;]: T_COMMENT =>  * Theme Name : Missing text domain, different comment format.\n
	Process token 144 on line 100 [col:1;len:61;lvl:0;]: T_COMMENT =>  * Theme URI  : https://wordpress.org/themes/twentyseventeen/\n
	Process token 145 on line 101 [col:1;len:34;lvl:0;]: T_COMMENT =>  * Author     : the WordPress team\n
	Process token 146 on line 102 [col:1;len:38;lvl:0;]: T_COMMENT =>  * Author URI : https://wordpress.org/\n
	Process token 147 on line 103 [col:1;len:466;lvl:0;]: T_COMMENT =>  * Description: Twenty Seventeen brings your site to life with header video and immersive featured images. With a focus on business sites, it features multiple sections on the front page as well as widgets, navigation and social menus, a logo, and more. Personalize its asymmetrical grid with a custom color scheme and showcase your multimedia content with post formats. Our default theme for 2017 works great in many languages, for any abilities, and on any device.\n
	Process token 148 on line 104 [col:1;len:19;lvl:0;]: T_COMMENT =>  * Version    : 1.6\n
	Process token 149 on line 105 [col:1;len:54;lvl:0;]: T_COMMENT =>  * License    : GNU General Public License v2 or later\n
	Process token 150 on line 106 [col:1;len:56;lvl:0;]: T_COMMENT =>  * License URI: http://www.gnu.org/licenses/gpl-2.0.html\n
	Process token 151 on line 107 [col:1;len:297;lvl:0;]: T_COMMENT =>  * Tags       : one-column, two-columns, right-sidebar, flexible-header, accessibility-ready, custom-colors, custom-header, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, post-formats, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready\n
	Process token 152 on line 108 [col:1;len:2;lvl:0;]: T_COMMENT =>  *\n
	Process token 153 on line 109 [col:1;len:57;lvl:0;]: T_COMMENT =>  * This theme, like WordPress, is licensed under the GPL.\n
	Process token 154 on line 110 [col:1;len:86;lvl:0;]: T_COMMENT =>  * Use it to make something cool, have fun, and share what you've learned with others.\n
	Process token 155 on line 111 [col:1;len:3;lvl:0;]: T_COMMENT =>  */
	Process token 156 on line 111 [col:4;len:0;lvl:0;]: T_WHITESPACE => \n
	Process token 157 on line 112 [col:1;len:0;lvl:0;]: T_WHITESPACE => \n
	Process token 158 on line 113 [col:1;len:3;lvl:0;]: T_DOC_COMMENT_OPEN_TAG => /**
	Process token 159 on line 113 [col:4;len:0;lvl:0;]: T_DOC_COMMENT_WHITESPACE => \n
	Process token 160 on line 114 [col:1;len:1;lvl:0;]: T_DOC_COMMENT_WHITESPACE =>  
	Process token 161 on line 114 [col:2;len:1;lvl:0;]: T_DOC_COMMENT_STAR => *
	Process token 162 on line 114 [col:3;len:1;lvl:0;]: T_DOC_COMMENT_WHITESPACE =>  
	Process token 163 on line 114 [col:4;len:59;lvl:0;]: T_DOC_COMMENT_STRING => Theme Name: Not the theme header (not enough headers found.
	Process token 164 on line 114 [col:63;len:0;lvl:0;]: T_DOC_COMMENT_WHITESPACE => \n
	Process token 165 on line 115 [col:1;len:1;lvl:0;]: T_DOC_COMMENT_WHITESPACE =>  
	Process token 166 on line 115 [col:2;len:2;lvl:0;]: T_DOC_COMMENT_CLOSE_TAG => */
	Process token 167 on line 115 [col:4;len:0;lvl:0;]: T_WHITESPACE => \n
	Process token 168 on line 116 [col:1;len:0;lvl:0;]: T_WHITESPACE => \n
	Process token 169 on line 117 [col:1;len:2;lvl:0;]: T_COMMENT => /*\n
	Process token 170 on line 118 [col:1;len:49;lvl:0;]: T_COMMENT => Theme Name: Missing text domain. Minimum headers.\n
	Process token 171 on line 119 [col:1;len:27;lvl:0;]: T_COMMENT => Theme URI: http://protected\n
	Process token 172 on line 120 [col:1;len:38;lvl:0;]: T_COMMENT => Description: http://thisshouldntbeaurl\n
	Process token 173 on line 121 [col:1;len:2;lvl:0;]: T_COMMENT => */
	Process token 174 on line 121 [col:3;len:0;lvl:0;]: T_WHITESPACE => \n
	Process token 175 on line 122 [col:1;len:0;lvl:0;]: T_WHITESPACE => \n
	Process token 176 on line 123 [col:1;len:2;lvl:0;]: T_COMMENT => /*\n
	Process token 177 on line 124 [col:1;len:99;lvl:0;]: T_COMMENT =>   Theme Name:       Missing text domain, different comment format, additional non-standard headers.\n
	Process token 178 on line 125 [col:1;len:37;lvl:0;]: T_COMMENT =>   Theme URI:        https://protected\n
	Process token 179 on line 126 [col:1;len:31;lvl:0;]: T_COMMENT =>   Author:           Lacy Morrow\n
	Process token 180 on line 127 [col:1;len:36;lvl:0;]: T_COMMENT =>   Author URI:       http://protected\n
	Process token 181 on line 128 [col:1;len:732;lvl:0;]: T_COMMENT =>   Description:      A Ghost-like WordPress theme. Casper (for WordPress) is a simple yet beautiful theme for bloggers. Inspired by the Ghost blogging platform, Casper is a WordPress port of the default theme by the same name. The goal of this project is to emulate the gorgeous theme while taking advantage of features exclusive to the WordPress framework. There are plenty of customization options included, accessible through the WordPress Customizer. Already included are hooks to serve responsive images appropriately and media queries to provide a fast and seamless experience from desktop to mobile. For questions, support, development instructions, or to contribute to the project visit [https://github.com/lacymorrow/casper]\n
	Process token 182 on line 129 [col:1;len:25;lvl:0;]: T_COMMENT =>   Version:          1.1.5\n
	Process token 183 on line 130 [col:1;len:51;lvl:0;]: T_COMMENT =>   License:          GNU General Public License v2.0\n
	Process token 184 on line 131 [col:1;len:60;lvl:0;]: T_COMMENT =>   License URI:      http://www.gnu.org/licenses/gpl-2.0.html\n
	Process token 185 on line 132 [col:1;len:31;lvl:0;]: T_COMMENT =>   Domain Path:      /languages/\n
	Process token 186 on line 133 [col:1;len:119;lvl:0;]: T_COMMENT =>   Tags:             responsive-layout, black, white, one-column, fluid-layout, custom-header, custom-menu, editor-style\n
	Process token 187 on line 134 [col:1;len:48;lvl:0;]: T_COMMENT =>   GitHub Theme URI: https://github.com/protected\n
	Process token 188 on line 135 [col:1;len:26;lvl:0;]: T_COMMENT =>   GitHub Branch:    master\n
	Process token 189 on line 136 [col:1;len:87;lvl:0;]: T_COMMENT =>   Casper is based on Underscores http://underscores.me/, (C) 2012-2014 Automattic, Inc.\n
	Process token 190 on line 137 [col:1;len:2;lvl:0;]: T_COMMENT => */
	Process token 191 on line 137 [col:3;len:0;lvl:0;]: T_WHITESPACE => \n
	Process token 192 on line 138 [col:1;len:0;lvl:0;]: T_WHITESPACE => \n
	Process token 193 on line 139 [col:1;len:3;lvl:0;]: T_DOC_COMMENT_OPEN_TAG => /**
	Process token 194 on line 139 [col:4;len:0;lvl:0;]: T_DOC_COMMENT_WHITESPACE => \n
	Process token 195 on line 140 [col:1;len:1;lvl:0;]: T_DOC_COMMENT_WHITESPACE =>  
	Process token 196 on line 140 [col:2;len:1;lvl:0;]: T_DOC_COMMENT_STAR => *
	Process token 197 on line 140 [col:3;len:1;lvl:0;]: T_DOC_COMMENT_WHITESPACE =>  
	Process token 198 on line 140 [col:4;len:49;lvl:0;]: T_DOC_COMMENT_STRING => Theme Name: Missing text domain. Docblock format.
	Process token 199 on line 140 [col:53;len:0;lvl:0;]: T_DOC_COMMENT_WHITESPACE => \n
	Process token 200 on line 141 [col:1;len:1;lvl:0;]: T_DOC_COMMENT_WHITESPACE =>  
	Process token 201 on line 141 [col:2;len:1;lvl:0;]: T_DOC_COMMENT_STAR => *
	Process token 202 on line 141 [col:3;len:1;lvl:0;]: T_DOC_COMMENT_WHITESPACE =>  
	Process token 203 on line 141 [col:4;len:54;lvl:0;]: T_DOC_COMMENT_STRING => Theme URI: https://github.com/WordPress/twentynineteen
	Process token 204 on line 141 [col:58;len:0;lvl:0;]: T_DOC_COMMENT_WHITESPACE => \n
	Process token 205 on line 142 [col:1;len:1;lvl:0;]: T_DOC_COMMENT_WHITESPACE =>  
	Process token 206 on line 142 [col:2;len:1;lvl:0;]: T_DOC_COMMENT_STAR => *
	Process token 207 on line 142 [col:3;len:1;lvl:0;]: T_DOC_COMMENT_WHITESPACE =>  
	Process token 208 on line 142 [col:4;len:26;lvl:0;]: T_DOC_COMMENT_STRING => Author: the WordPress team
	Process token 209 on line 142 [col:30;len:0;lvl:0;]: T_DOC_COMMENT_WHITESPACE => \n
	Process token 210 on line 143 [col:1;len:1;lvl:0;]: T_DOC_COMMENT_WHITESPACE =>  
	Process token 211 on line 143 [col:2;len:1;lvl:0;]: T_DOC_COMMENT_STAR => *
	Process token 212 on line 143 [col:3;len:1;lvl:0;]: T_DOC_COMMENT_WHITESPACE =>  
	Process token 213 on line 143 [col:4;len:34;lvl:0;]: T_DOC_COMMENT_STRING => Author URI: https://wordpress.org/
	Process token 214 on line 143 [col:38;len:0;lvl:0;]: T_DOC_COMMENT_WHITESPACE => \n
	Process token 215 on line 144 [col:1;len:1;lvl:0;]: T_DOC_COMMENT_WHITESPACE =>  
	Process token 216 on line 144 [col:2;len:1;lvl:0;]: T_DOC_COMMENT_STAR => *
	Process token 217 on line 144 [col:3;len:1;lvl:0;]: T_DOC_COMMENT_WHITESPACE =>  
	Process token 218 on line 144 [col:4;len:41;lvl:0;]: T_DOC_COMMENT_STRING => Description: A new Gutenberg-ready theme.
	Process token 219 on line 144 [col:45;len:0;lvl:0;]: T_DOC_COMMENT_WHITESPACE => \n
	Process token 220 on line 145 [col:1;len:1;lvl:0;]: T_DOC_COMMENT_WHITESPACE =>  
	Process token 221 on line 145 [col:2;len:1;lvl:0;]: T_DOC_COMMENT_STAR => *
	Process token 222 on line 145 [col:3;len:1;lvl:0;]: T_DOC_COMMENT_WHITESPACE =>  
	Process token 223 on line 145 [col:4;len:34;lvl:0;]: T_DOC_COMMENT_STRING => Requires at least: WordPress 4.9.6
	Process token 224 on line 145 [col:38;len:0;lvl:0;]: T_DOC_COMMENT_WHITESPACE => \n
	Process token 225 on line 146 [col:1;len:1;lvl:0;]: T_DOC_COMMENT_WHITESPACE =>  
	Process token 226 on line 146 [col:2;len:1;lvl:0;]: T_DOC_COMMENT_STAR => *
	Process token 227 on line 146 [col:3;len:1;lvl:0;]: T_DOC_COMMENT_WHITESPACE =>  
	Process token 228 on line 146 [col:4;len:12;lvl:0;]: T_DOC_COMMENT_STRING => Version: 1.0
	Process token 229 on line 146 [col:16;len:0;lvl:0;]: T_DOC_COMMENT_WHITESPACE => \n
	Process token 230 on line 147 [col:1;len:1;lvl:0;]: T_DOC_COMMENT_WHITESPACE =>  
	Process token 231 on line 147 [col:2;len:1;lvl:0;]: T_DOC_COMMENT_STAR => *
	Process token 232 on line 147 [col:3;len:1;lvl:0;]: T_DOC_COMMENT_WHITESPACE =>  
	Process token 233 on line 147 [col:4;len:47;lvl:0;]: T_DOC_COMMENT_STRING => License: GNU General Public License v2 or later
	Process token 234 on line 147 [col:51;len:0;lvl:0;]: T_DOC_COMMENT_WHITESPACE => \n
	Process token 235 on line 148 [col:1;len:1;lvl:0;]: T_DOC_COMMENT_WHITESPACE =>  
	Process token 236 on line 148 [col:2;len:1;lvl:0;]: T_DOC_COMMENT_STAR => *
	Process token 237 on line 148 [col:3;len:1;lvl:0;]: T_DOC_COMMENT_WHITESPACE =>  
	Process token 238 on line 148 [col:4;len:20;lvl:0;]: T_DOC_COMMENT_STRING => License URI: LICENSE
	Process token 239 on line 148 [col:24;len:0;lvl:0;]: T_DOC_COMMENT_WHITESPACE => \n
	Process token 240 on line 149 [col:1;len:1;lvl:0;]: T_DOC_COMMENT_WHITESPACE =>  
	Process token 241 on line 149 [col:2;len:1;lvl:0;]: T_DOC_COMMENT_STAR => *
	Process token 242 on line 149 [col:3;len:1;lvl:0;]: T_DOC_COMMENT_WHITESPACE =>  
	Process token 243 on line 149 [col:4;len:104;lvl:0;]: T_DOC_COMMENT_STRING => Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
	Process token 244 on line 149 [col:108;len:0;lvl:0;]: T_DOC_COMMENT_WHITESPACE => \n
	Process token 245 on line 150 [col:1;len:1;lvl:0;]: T_DOC_COMMENT_WHITESPACE =>  
	Process token 246 on line 150 [col:2;len:1;lvl:0;]: T_DOC_COMMENT_STAR => *
	Process token 247 on line 150 [col:3;len:1;lvl:0;]: T_DOC_COMMENT_WHITESPACE =>  
	Process token 248 on line 150 [col:4;len:54;lvl:0;]: T_DOC_COMMENT_STRING => This theme, like WordPress, is licensed under the GPL.
	Process token 249 on line 150 [col:58;len:0;lvl:0;]: T_DOC_COMMENT_WHITESPACE => \n
	Process token 250 on line 151 [col:1;len:1;lvl:0;]: T_DOC_COMMENT_WHITESPACE =>  
	Process token 251 on line 151 [col:2;len:1;lvl:0;]: T_DOC_COMMENT_STAR => *
	Process token 252 on line 151 [col:3;len:1;lvl:0;]: T_DOC_COMMENT_WHITESPACE =>  
	Process token 253 on line 151 [col:4;len:83;lvl:0;]: T_DOC_COMMENT_STRING => Use it to make something cool, have fun, and share what you've learned with others.
	Process token 254 on line 151 [col:87;len:0;lvl:0;]: T_DOC_COMMENT_WHITESPACE => \n
	Process token 255 on line 152 [col:1;len:1;lvl:0;]: T_DOC_COMMENT_WHITESPACE =>  
	Process token 256 on line 152 [col:2;len:1;lvl:0;]: T_DOC_COMMENT_STAR => *
	Process token 257 on line 152 [col:3;len:1;lvl:0;]: T_DOC_COMMENT_WHITESPACE =>  
	Process token 258 on line 152 [col:4;len:95;lvl:0;]: T_DOC_COMMENT_STRING => Twenty Nineteen is based on Underscores https://underscores.me/, (C) 2012-2018 Automattic, Inc.
	Process token 259 on line 152 [col:99;len:0;lvl:0;]: T_DOC_COMMENT_WHITESPACE => \n
	Process token 260 on line 153 [col:1;len:1;lvl:0;]: T_DOC_COMMENT_WHITESPACE =>  
	Process token 261 on line 153 [col:2;len:1;lvl:0;]: T_DOC_COMMENT_STAR => *
	Process token 262 on line 153 [col:3;len:1;lvl:0;]: T_DOC_COMMENT_WHITESPACE =>  
	Process token 263 on line 153 [col:4;len:70;lvl:0;]: T_DOC_COMMENT_STRING => Underscores is distributed under the terms of the GNU GPL v2 or later.
	Process token 264 on line 153 [col:74;len:0;lvl:0;]: T_DOC_COMMENT_WHITESPACE => \n
	Process token 265 on line 154 [col:1;len:1;lvl:0;]: T_DOC_COMMENT_WHITESPACE =>  
	Process token 266 on line 154 [col:2;len:1;lvl:0;]: T_DOC_COMMENT_STAR => *
	Process token 267 on line 154 [col:3;len:1;lvl:0;]: T_DOC_COMMENT_WHITESPACE =>  
	Process token 268 on line 154 [col:4;len:68;lvl:0;]: T_DOC_COMMENT_STRING => Normalizing styles have been helped along thanks to the fine work of
	Process token 269 on line 154 [col:72;len:0;lvl:0;]: T_DOC_COMMENT_WHITESPACE => \n
	Process token 270 on line 155 [col:1;len:1;lvl:0;]: T_DOC_COMMENT_WHITESPACE =>  
	Process token 271 on line 155 [col:2;len:1;lvl:0;]: T_DOC_COMMENT_STAR => *
	Process token 272 on line 155 [col:3;len:1;lvl:0;]: T_DOC_COMMENT_WHITESPACE =>  
	Process token 273 on line 155 [col:4;len:76;lvl:0;]: T_DOC_COMMENT_STRING => Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
	Process token 274 on line 155 [col:80;len:0;lvl:0;]: T_DOC_COMMENT_WHITESPACE => \n
	Process token 275 on line 156 [col:1;len:1;lvl:0;]: T_DOC_COMMENT_WHITESPACE =>  
	Process token 276 on line 156 [col:2;len:2;lvl:0;]: T_DOC_COMMENT_CLOSE_TAG => */
	Process token 277 on line 156 [col:4;len:0;lvl:0;]: T_WHITESPACE => \n
	Process token 278 on line 157 [col:1;len:0;lvl:0;]: T_WHITESPACE => \n
	Process token 279 on line 158 [col:1;len:93;lvl:0;]: T_COMMENT => /* @codingStandardsChangeSetting WordPress.Utils.I18nTextDomainFixer old_text_domain false */
	Process token 280 on line 158 [col:94;len:0;lvl:0;]: T_WHITESPACE => \n
	Process token 281 on line 159 [col:1;len:93;lvl:0;]: T_COMMENT => /* @codingStandardsChangeSetting WordPress.Utils.I18nTextDomainFixer new_text_domain false */
	Process token 282 on line 159 [col:94;len:0;lvl:0;]: T_WHITESPACE => \n
	Process token 283 on line 160 [col:1;len:0;lvl:0;]: T_CLOSE_TAG => 
	*** END LEVEL MAP ***
[CSS => 284 tokens in 160 lines]... 
	*** START TOKEN PROCESSING ***
		Process token 0: T_OPEN_TAG => 
			Processing TestCode\Sniffs\Test\TestSniff... DONE in 0 seconds
		Process token 1: T_COMMENT => /* @codingStandardsChangeSetting WordPress.Utils.I18nTextDomainFixer old_text_domain twentyeleven */
		Process token 2: T_WHITESPACE => \n
		Process token 3: T_COMMENT => /* @codingStandardsChangeSetting WordPress.Utils.I18nTextDomainFixer new_text_domain twentyten */
		Process token 4: T_WHITESPACE => \n
		Process token 5: T_WHITESPACE => \n
		Process token 6: T_COMMENT => /*\n
		Process token 7: T_COMMENT => Theme Name: Correct text-domain.\n
		Process token 8: T_COMMENT => Theme URI: https://wordpress.org/themes/twentyten/\n
		Process token 9: T_COMMENT => Description: The 2010 theme for WordPress is stylish, customizable, simple, and readable -- make it yours with a custom menu, header image, and background. Twenty Ten supports six widgetized areas (two in the sidebar, four in the footer) and featured images (thumbnails for gallery posts and custom header images for posts and pages). It includes stylesheets for print and the admin Visual Editor, special styles for posts in the "Asides" and "Gallery" categories, and has an optional one-column page template that removes the sidebar.\n
		Process token 10: T_COMMENT => Author: the WordPress team\n
		Process token 11: T_COMMENT => Author URI: https://wordpress.org/\n
		Process token 12: T_COMMENT => Version: 2.5\n
		Process token 13: T_COMMENT => License: GNU General Public License v2 or later\n
		Process token 14: T_COMMENT => License URI: http://www.gnu.org/licenses/gpl-2.0.html\n
		Process token 15: T_COMMENT => Tags: blog, two-columns, custom-header, custom-background, threaded-comments, sticky-post, translation-ready, microformats, rtl-language-support, editor-style, custom-menu, flexible-header, featured-images, footer-widgets, featured-image-header\n
		Process token 16: T_COMMENT => Text Domain: twentyten\n
		Process token 17: T_COMMENT => */
		Process token 18: T_WHITESPACE => \n
		Process token 19: T_WHITESPACE => \n
		Process token 20: T_COMMENT => /* @codingStandardsChangeSetting WordPress.Utils.I18nTextDomainFixer old_text_domain _s */
		Process token 21: T_WHITESPACE => \n
		Process token 22: T_COMMENT => /* @codingStandardsChangeSetting WordPress.Utils.I18nTextDomainFixer new_text_domain something-else */
		Process token 23: T_WHITESPACE => \n
		Process token 24: T_WHITESPACE => \n
		Process token 25: T_COMMENT => /*!\n
		Process token 26: T_COMMENT => Theme Name: Text domain which should be fixed and checking that consequtive comments don't get mixed up.\n
		Process token 27: T_COMMENT => Theme URI: https://underscores.me/\n
		Process token 28: T_COMMENT => Author: Automattic\n
		Process token 29: T_COMMENT => Author URI: https://automattic.com/\n
		Process token 30: T_COMMENT => Description: Hi. I'm a starter theme called <code>_s</code>, or <em>underscores</em>, if you like. I'm a theme meant for hacking so don't use me as a <em>Parent Theme</em>. Instead try turning me into the next, most awesome, WordPress theme out there. That's what I'm here for.\n
		Process token 31: T_COMMENT => Version: 1.0.0\n
		Process token 32: T_COMMENT => License: GNU General Public License v2 or later\n
		Process token 33: T_COMMENT => License URI: LICENSE\n
		Process token 34: T_COMMENT => Text Domain: _s\n
		Process token 35: T_COMMENT => Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready\n
		Process token 36: T_COMMENT => \n
		Process token 37: T_COMMENT => This theme, like WordPress, is licensed under the GPL.\n
		Process token 38: T_COMMENT => Use it to make something cool, have fun, and share what you've learned with others.\n
		Process token 39: T_COMMENT => \n
		Process token 40: T_COMMENT => _s is based on Underscores https://underscores.me/, (C) 2012-2017 Automattic, Inc.\n
		Process token 41: T_COMMENT => Underscores is distributed under the terms of the GNU GPL v2 or later.\n
		Process token 42: T_COMMENT => \n
		Process token 43: T_COMMENT => Normalizing styles have been helped along thanks to the fine work of\n
		Process token 44: T_COMMENT => Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/\n
		Process token 45: T_COMMENT => */
		Process token 46: T_WHITESPACE => \n
		Process token 47: T_COMMENT => /*--------------------------------------------------------------\n
		Process token 48: T_COMMENT => >>> TABLE OF CONTENTS:\n
		Process token 49: T_COMMENT => ----------------------------------------------------------------\n
		Process token 50: T_COMMENT => # Normalize\n
		Process token 51: T_COMMENT => # Typography\n
		Process token 52: T_COMMENT => # Elements\n
		Process token 53: T_COMMENT => # Forms\n
		Process token 54: T_COMMENT => # Navigation\n
		Process token 55: T_COMMENT => \t## Links\n
		Process token 56: T_COMMENT => \t## Menus\n
		Process token 57: T_COMMENT => # Accessibility\n
		Process token 58: T_COMMENT => # Alignments\n
		Process token 59: T_COMMENT => # Clearings\n
		Process token 60: T_COMMENT => # Widgets\n
		Process token 61: T_COMMENT => # Content\n
		Process token 62: T_COMMENT => \t## Posts and pages\n
		Process token 63: T_COMMENT => \t## Comments\n
		Process token 64: T_COMMENT => # Infinite scroll\n
		Process token 65: T_COMMENT => # Media\n
		Process token 66: T_COMMENT => \t## Captions\n
		Process token 67: T_COMMENT => \t## Galleries\n
		Process token 68: T_COMMENT => --------------------------------------------------------------*/
		Process token 69: T_WHITESPACE => \n
		Process token 70: T_COMMENT => /*--------------------------------------------------------------\n
		Process token 71: T_COMMENT => # Normalize\n
		Process token 72: T_COMMENT => --------------------------------------------------------------*/
		Process token 73: T_WHITESPACE => \n
		Process token 74: T_COMMENT => /* normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
		Process token 75: T_WHITESPACE => \n
		Process token 76: T_WHITESPACE => \n
		Process token 77: T_COMMENT => /* Document\n
		Process token 78: T_COMMENT => \t ========================================================================== */
		Process token 79: T_WHITESPACE => \n
		Process token 80: T_WHITESPACE => \n
		Process token 81: T_DOC_COMMENT_OPEN_TAG => /**
		Process token 82: T_DOC_COMMENT_WHITESPACE => \n
		Process token 83: T_DOC_COMMENT_WHITESPACE =>  
		Process token 84: T_DOC_COMMENT_STAR => *
		Process token 85: T_DOC_COMMENT_WHITESPACE =>  
		Process token 86: T_DOC_COMMENT_STRING => 1. Correct the line height in all browsers.
		Process token 87: T_DOC_COMMENT_WHITESPACE => \n
		Process token 88: T_DOC_COMMENT_WHITESPACE =>  
		Process token 89: T_DOC_COMMENT_STAR => *
		Process token 90: T_DOC_COMMENT_WHITESPACE =>  
		Process token 91: T_DOC_COMMENT_STRING => 2. Prevent adjustments of font size after orientation changes in iOS.
		Process token 92: T_DOC_COMMENT_WHITESPACE => \n
		Process token 93: T_DOC_COMMENT_WHITESPACE =>  
		Process token 94: T_DOC_COMMENT_CLOSE_TAG => */
		Process token 95: T_WHITESPACE => \n
		Process token 96: T_WHITESPACE => \n
		Process token 97: T_STRING => html
		Process token 98: T_WHITESPACE =>  
		Process token 99: T_OPEN_CURLY_BRACKET => {
		Process token 100: T_WHITESPACE => \n
		Process token 101: T_WHITESPACE => \t
		Process token 102: T_STYLE => line-height
		Process token 103: T_COLON => :
		Process token 104: T_WHITESPACE =>  
		Process token 105: T_DNUMBER => 1.15
		Process token 106: T_SEMICOLON => ;
		Process token 107: T_WHITESPACE =>  
		Process token 108: T_COMMENT => /* 1 */
		Process token 109: T_WHITESPACE => \n
		Process token 110: T_WHITESPACE => \t
		Process token 111: T_STYLE => -webkit-text-size-adjust
		Process token 112: T_COLON => :
		Process token 113: T_WHITESPACE =>  
		Process token 114: T_LNUMBER => 100
		Process token 115: T_MODULUS => %
		Process token 116: T_SEMICOLON => ;
		Process token 117: T_WHITESPACE =>  
		Process token 118: T_COMMENT => /* 2 */
		Process token 119: T_WHITESPACE => \n
		Process token 120: T_CLOSE_CURLY_BRACKET => }
		Process token 121: T_WHITESPACE => \n
		Process token 122: T_WHITESPACE => \n
		Process token 123: T_COMMENT => /* @codingStandardsChangeSetting WordPress.Utils.I18nTextDomainFixer new_text_domain twentyseventeen */
		Process token 124: T_WHITESPACE => \n
		Process token 125: T_WHITESPACE => \n
		Process token 126: T_COMMENT => /*\n
		Process token 127: T_COMMENT => Theme Name: Missing text domain.\n
		Process token 128: T_COMMENT => Theme URI: https://wordpress.org/themes/twentyseventeen/\n
		Process token 129: T_COMMENT => Author: the WordPress team\n
		Process token 130: T_COMMENT => Author URI: https://wordpress.org/\n
		Process token 131: T_COMMENT => Description: Twenty Seventeen brings your site to life with header video and immersive featured images. With a focus on business sites, it features multiple sections on the front page as well as widgets, navigation and social menus, a logo, and more. Personalize its asymmetrical grid with a custom color scheme and showcase your multimedia content with post formats. Our default theme for 2017 works great in many languages, for any abilities, and on any device.\n
		Process token 132: T_COMMENT => Version: 1.6\n
		Process token 133: T_COMMENT => License: GNU General Public License v2 or later\n
		Process token 134: T_COMMENT => License URI: http://www.gnu.org/licenses/gpl-2.0.html\n
		Process token 135: T_COMMENT => Tags: one-column, two-columns, right-sidebar, flexible-header, accessibility-ready, custom-colors, custom-header, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, post-formats, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready\n
		Process token 136: T_COMMENT => \n
		Process token 137: T_COMMENT => This theme, like WordPress, is licensed under the GPL.\n
		Process token 138: T_COMMENT => Use it to make something cool, have fun, and share what you've learned with others.\n
		Process token 139: T_COMMENT => */
		Process token 140: T_WHITESPACE => \n
		Process token 141: T_WHITESPACE => \n
		Process token 142: T_COMMENT => /*\n
		Process token 143: T_COMMENT =>  * Theme Name : Missing text domain, different comment format.\n
		Process token 144: T_COMMENT =>  * Theme URI  : https://wordpress.org/themes/twentyseventeen/\n
		Process token 145: T_COMMENT =>  * Author     : the WordPress team\n
		Process token 146: T_COMMENT =>  * Author URI : https://wordpress.org/\n
		Process token 147: T_COMMENT =>  * Description: Twenty Seventeen brings your site to life with header video and immersive featured images. With a focus on business sites, it features multiple sections on the front page as well as widgets, navigation and social menus, a logo, and more. Personalize its asymmetrical grid with a custom color scheme and showcase your multimedia content with post formats. Our default theme for 2017 works great in many languages, for any abilities, and on any device.\n
		Process token 148: T_COMMENT =>  * Version    : 1.6\n
		Process token 149: T_COMMENT =>  * License    : GNU General Public License v2 or later\n
		Process token 150: T_COMMENT =>  * License URI: http://www.gnu.org/licenses/gpl-2.0.html\n
		Process token 151: T_COMMENT =>  * Tags       : one-column, two-columns, right-sidebar, flexible-header, accessibility-ready, custom-colors, custom-header, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, post-formats, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready\n
		Process token 152: T_COMMENT =>  *\n
		Process token 153: T_COMMENT =>  * This theme, like WordPress, is licensed under the GPL.\n
		Process token 154: T_COMMENT =>  * Use it to make something cool, have fun, and share what you've learned with others.\n
		Process token 155: T_COMMENT =>  */
		Process token 156: T_WHITESPACE => \n
		Process token 157: T_WHITESPACE => \n
		Process token 158: T_DOC_COMMENT_OPEN_TAG => /**
		Process token 159: T_DOC_COMMENT_WHITESPACE => \n
		Process token 160: T_DOC_COMMENT_WHITESPACE =>  
		Process token 161: T_DOC_COMMENT_STAR => *
		Process token 162: T_DOC_COMMENT_WHITESPACE =>  
		Process token 163: T_DOC_COMMENT_STRING => Theme Name: Not the theme header (not enough headers found.
		Process token 164: T_DOC_COMMENT_WHITESPACE => \n
		Process token 165: T_DOC_COMMENT_WHITESPACE =>  
		Process token 166: T_DOC_COMMENT_CLOSE_TAG => */
		Process token 167: T_WHITESPACE => \n
		Process token 168: T_WHITESPACE => \n
		Process token 169: T_COMMENT => /*\n
		Process token 170: T_COMMENT => Theme Name: Missing text domain. Minimum headers.\n
		Process token 171: T_COMMENT => Theme URI: http://protected\n
		Process token 172: T_COMMENT => Description: http://thisshouldntbeaurl\n
		Process token 173: T_COMMENT => */
		Process token 174: T_WHITESPACE => \n
		Process token 175: T_WHITESPACE => \n
		Process token 176: T_COMMENT => /*\n
		Process token 177: T_COMMENT =>   Theme Name:       Missing text domain, different comment format, additional non-standard headers.\n
		Process token 178: T_COMMENT =>   Theme URI:        https://protected\n
		Process token 179: T_COMMENT =>   Author:           Lacy Morrow\n
		Process token 180: T_COMMENT =>   Author URI:       http://protected\n
		Process token 181: T_COMMENT =>   Description:      A Ghost-like WordPress theme. Casper (for WordPress) is a simple yet beautiful theme for bloggers. Inspired by the Ghost blogging platform, Casper is a WordPress port of the default theme by the same name. The goal of this project is to emulate the gorgeous theme while taking advantage of features exclusive to the WordPress framework. There are plenty of customization options included, accessible through the WordPress Customizer. Already included are hooks to serve responsive images appropriately and media queries to provide a fast and seamless experience from desktop to mobile. For questions, support, development instructions, or to contribute to the project visit [https://github.com/lacymorrow/casper]\n
		Process token 182: T_COMMENT =>   Version:          1.1.5\n
		Process token 183: T_COMMENT =>   License:          GNU General Public License v2.0\n
		Process token 184: T_COMMENT =>   License URI:      http://www.gnu.org/licenses/gpl-2.0.html\n
		Process token 185: T_COMMENT =>   Domain Path:      /languages/\n
		Process token 186: T_COMMENT =>   Tags:             responsive-layout, black, white, one-column, fluid-layout, custom-header, custom-menu, editor-style\n
		Process token 187: T_COMMENT =>   GitHub Theme URI: https://github.com/protected\n
		Process token 188: T_COMMENT =>   GitHub Branch:    master\n
		Process token 189: T_COMMENT =>   Casper is based on Underscores http://underscores.me/, (C) 2012-2014 Automattic, Inc.\n
		Process token 190: T_COMMENT => */
		Process token 191: T_WHITESPACE => \n
		Process token 192: T_WHITESPACE => \n
		Process token 193: T_DOC_COMMENT_OPEN_TAG => /**
		Process token 194: T_DOC_COMMENT_WHITESPACE => \n
		Process token 195: T_DOC_COMMENT_WHITESPACE =>  
		Process token 196: T_DOC_COMMENT_STAR => *
		Process token 197: T_DOC_COMMENT_WHITESPACE =>  
		Process token 198: T_DOC_COMMENT_STRING => Theme Name: Missing text domain. Docblock format.
		Process token 199: T_DOC_COMMENT_WHITESPACE => \n
		Process token 200: T_DOC_COMMENT_WHITESPACE =>  
		Process token 201: T_DOC_COMMENT_STAR => *
		Process token 202: T_DOC_COMMENT_WHITESPACE =>  
		Process token 203: T_DOC_COMMENT_STRING => Theme URI: https://github.com/WordPress/twentynineteen
		Process token 204: T_DOC_COMMENT_WHITESPACE => \n
		Process token 205: T_DOC_COMMENT_WHITESPACE =>  
		Process token 206: T_DOC_COMMENT_STAR => *
		Process token 207: T_DOC_COMMENT_WHITESPACE =>  
		Process token 208: T_DOC_COMMENT_STRING => Author: the WordPress team
		Process token 209: T_DOC_COMMENT_WHITESPACE => \n
		Process token 210: T_DOC_COMMENT_WHITESPACE =>  
		Process token 211: T_DOC_COMMENT_STAR => *
		Process token 212: T_DOC_COMMENT_WHITESPACE =>  
		Process token 213: T_DOC_COMMENT_STRING => Author URI: https://wordpress.org/
		Process token 214: T_DOC_COMMENT_WHITESPACE => \n
		Process token 215: T_DOC_COMMENT_WHITESPACE =>  
		Process token 216: T_DOC_COMMENT_STAR => *
		Process token 217: T_DOC_COMMENT_WHITESPACE =>  
		Process token 218: T_DOC_COMMENT_STRING => Description: A new Gutenberg-ready theme.
		Process token 219: T_DOC_COMMENT_WHITESPACE => \n
		Process token 220: T_DOC_COMMENT_WHITESPACE =>  
		Process token 221: T_DOC_COMMENT_STAR => *
		Process token 222: T_DOC_COMMENT_WHITESPACE =>  
		Process token 223: T_DOC_COMMENT_STRING => Requires at least: WordPress 4.9.6
		Process token 224: T_DOC_COMMENT_WHITESPACE => \n
		Process token 225: T_DOC_COMMENT_WHITESPACE =>  
		Process token 226: T_DOC_COMMENT_STAR => *
		Process token 227: T_DOC_COMMENT_WHITESPACE =>  
		Process token 228: T_DOC_COMMENT_STRING => Version: 1.0
		Process token 229: T_DOC_COMMENT_WHITESPACE => \n
		Process token 230: T_DOC_COMMENT_WHITESPACE =>  
		Process token 231: T_DOC_COMMENT_STAR => *
		Process token 232: T_DOC_COMMENT_WHITESPACE =>  
		Process token 233: T_DOC_COMMENT_STRING => License: GNU General Public License v2 or later
		Process token 234: T_DOC_COMMENT_WHITESPACE => \n
		Process token 235: T_DOC_COMMENT_WHITESPACE =>  
		Process token 236: T_DOC_COMMENT_STAR => *
		Process token 237: T_DOC_COMMENT_WHITESPACE =>  
		Process token 238: T_DOC_COMMENT_STRING => License URI: LICENSE
		Process token 239: T_DOC_COMMENT_WHITESPACE => \n
		Process token 240: T_DOC_COMMENT_WHITESPACE =>  
		Process token 241: T_DOC_COMMENT_STAR => *
		Process token 242: T_DOC_COMMENT_WHITESPACE =>  
		Process token 243: T_DOC_COMMENT_STRING => Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
		Process token 244: T_DOC_COMMENT_WHITESPACE => \n
		Process token 245: T_DOC_COMMENT_WHITESPACE =>  
		Process token 246: T_DOC_COMMENT_STAR => *
		Process token 247: T_DOC_COMMENT_WHITESPACE =>  
		Process token 248: T_DOC_COMMENT_STRING => This theme, like WordPress, is licensed under the GPL.
		Process token 249: T_DOC_COMMENT_WHITESPACE => \n
		Process token 250: T_DOC_COMMENT_WHITESPACE =>  
		Process token 251: T_DOC_COMMENT_STAR => *
		Process token 252: T_DOC_COMMENT_WHITESPACE =>  
		Process token 253: T_DOC_COMMENT_STRING => Use it to make something cool, have fun, and share what you've learned with others.
		Process token 254: T_DOC_COMMENT_WHITESPACE => \n
		Process token 255: T_DOC_COMMENT_WHITESPACE =>  
		Process token 256: T_DOC_COMMENT_STAR => *
		Process token 257: T_DOC_COMMENT_WHITESPACE =>  
		Process token 258: T_DOC_COMMENT_STRING => Twenty Nineteen is based on Underscores https://underscores.me/, (C) 2012-2018 Automattic, Inc.
		Process token 259: T_DOC_COMMENT_WHITESPACE => \n
		Process token 260: T_DOC_COMMENT_WHITESPACE =>  
		Process token 261: T_DOC_COMMENT_STAR => *
		Process token 262: T_DOC_COMMENT_WHITESPACE =>  
		Process token 263: T_DOC_COMMENT_STRING => Underscores is distributed under the terms of the GNU GPL v2 or later.
		Process token 264: T_DOC_COMMENT_WHITESPACE => \n
		Process token 265: T_DOC_COMMENT_WHITESPACE =>  
		Process token 266: T_DOC_COMMENT_STAR => *
		Process token 267: T_DOC_COMMENT_WHITESPACE =>  
		Process token 268: T_DOC_COMMENT_STRING => Normalizing styles have been helped along thanks to the fine work of
		Process token 269: T_DOC_COMMENT_WHITESPACE => \n
		Process token 270: T_DOC_COMMENT_WHITESPACE =>  
		Process token 271: T_DOC_COMMENT_STAR => *
		Process token 272: T_DOC_COMMENT_WHITESPACE =>  
		Process token 273: T_DOC_COMMENT_STRING => Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
		Process token 274: T_DOC_COMMENT_WHITESPACE => \n
		Process token 275: T_DOC_COMMENT_WHITESPACE =>  
		Process token 276: T_DOC_COMMENT_CLOSE_TAG => */
		Process token 277: T_WHITESPACE => \n
		Process token 278: T_WHITESPACE => \n
		Process token 279: T_COMMENT => /* @codingStandardsChangeSetting WordPress.Utils.I18nTextDomainFixer old_text_domain false */
		Process token 280: T_WHITESPACE => \n
		Process token 281: T_COMMENT => /* @codingStandardsChangeSetting WordPress.Utils.I18nTextDomainFixer new_text_domain false */
		Process token 282: T_WHITESPACE => \n
		Process token 283: T_CLOSE_TAG => 
	*** END TOKEN PROCESSING ***
	*** START SNIFF PROCESSING REPORT ***
	TestCode\Sniffs\Test\TestSniff: 0 secs
	*** END SNIFF PROCESSING REPORT ***
@VincentLanglet
Copy link
Contributor

The CSS support will be dropped anyway #2448

@jrfnl
Copy link
Contributor Author

jrfnl commented Jan 4, 2020

@VincentLanglet I know. You did see that this issue pre-dates the announcement that support will be dropped by about five months ? And that the drop won't happen until 4.0, which may yet be years away ?

@VincentLanglet
Copy link
Contributor

VincentLanglet commented Jan 4, 2020

which may yet be years away ?

"It's not years away" according gsherwood.

@VincentLanglet I know. You did see that this issue pre-dates the announcement that support will be dropped by about five months ?

Yes that's why I pointed it out. I thought you maybe wanted to close the issue since the phpcs will focus about php only for the next major.

@jrfnl
Copy link
Contributor Author

jrfnl commented Jan 4, 2020

I thought you maybe wanted to close the issue since the phpcs will focus about php only for the next major.

Not until the bug is either fixed or there is an RC for version 4.0.

@VincentLanglet
Copy link
Contributor

VincentLanglet commented Jan 4, 2020

In another issue (talking about JS):
From gsherwood

PHP_CodeSniffer does not support modern JS syntax. All JS functionality will be removed in version 4 and no bugs will be fixed in version 3. I strongly suggest switching to a dedicated JS linting tool like eslint.

The version 4 roadmap can be found here: https://github.com/squizlabs/PHP_CodeSniffer/milestone/11

The specific issue for this is here: #2448

So I understand the same way that no CSS bug will be fixed in version 3.

But you're still free to fix it :)

@jrfnl
Copy link
Contributor Author

jrfnl commented Jan 4, 2020

@VincentLanglet You do realize I can read ?

@VincentLanglet
Copy link
Contributor

@jrfnl You do realize you’re aggressiv for no reason ?

@jrfnl
Copy link
Contributor Author

jrfnl commented Jan 4, 2020

@VincentLanglet You do realize that is only in response to you aggressively trying to put pressure on me to close an issue while mansplaining the state of this repo to me ?

@VincentLanglet
Copy link
Contributor

VincentLanglet commented Jan 4, 2020

@VincentLanglet You do realize that is only in response to you aggressively

You're the only one aggressive here.

trying to put pressure on me to close an issue

This issue was opened for more than one year, with no activity at all. It is about a support which is deprecated and will be dropped. So no, I didn't put pressure, I suggested to close it.

But since you can read:

But you're still free to fix it :)

I let you the choice, I'm not here to decide what should be closed or opened.
You could have forgot this issue and be happy having someone giving you a reminder. There is multiple old issues on this repository with old bug, some of them was fixed but the issue is still opened, a reminder is never bad. A simple "I still want to fix this bug"-like answer was enough.
You took it the wrong way, I can't do nothing about this.

while mansplaining the state of this repo to me ?

Oh, you're a woman ? Should I know it ? Does it change something ? I'm talking from an open-source developer to another open-source developer. I'm talking to an avatar with a pseudo. But you seems to juge people by their gender. That's sad.
If you live with frustration don't put the blame on others.

You were aggressive, now you are offensive

@jrfnl
Copy link
Contributor Author

jrfnl commented Jan 4, 2020

@VincentLanglet

  1. Most importantly: Your remarks have not contributed anything of value to this issue, so could all have been left unsaid.
  2. I told you my position in my second response. You clearly didn't accept that as you continued to try and change my mind (= putting pressure on me).
  3. It's not up to you to decide what should or shouldn't be closed or to "leave me a choice to fix it".
    I have that choice anyone, that's the nature of open source.
    Making a close suggestion is fine. Accepting the response you get, would then be a good idea.
  4. It's not about gender. I'd call your behaviour mansplaining independently of gender.
    Just so you realize: "mansplaining" means explaining something to someone who is an expert in the subject as if they were a novice. It's only called "mansplaining" as it's typical behaviour men exhibit towards women, but the principle is gender independent and exactly what you've been doing above.

@VincentLanglet
Copy link
Contributor

  1. Most importantly: Your remarks have not contributed anything of value to this issue, so could all have been left unsaid.

So do your remarks and your aggressiveness. You could have kept this for you.

  1. I told you my position in my second response. You clearly didn't accept that as you continued to try and change my mind (= putting pressure on me).

To Argue !== To put pressure.

  • I said the CSS support will be drop.
  • You answered aggressively.
  • I explained correctly my argument
  • You only started to detailed your point of view.
  • I answered correctly and added an argument, but was still opened to every answer.
  • You answered again aggressively.

You're the only one trying to put pressure.

  1. It's not up to you to decide what should or shouldn't be closed or to "leave me a choice to fix it".

Don't try to make me saying something I didn't.

Making a close suggestion is fine. Accepting the response you get, would then be a good idea.

I made a suggestion, and accepted the response in the third message.
What I do not accept is the way you formulated your messages.
You should try to answer more politely, and be opened to argument.

  1. It's not about gender. I'd call your behaviour mansplaining independently of gender.
    Just so you realize: "mansplaining" means explaining something to someone who is an expert in the subject as if they were a novice. It's only called "mansplaining" as it's typical behaviour men exhibit towards women, but the principle is gender independent and exactly what you've been doing above.

I do respect the level of knowledge you have about this repository. I do appreciate every time the comment you make on pull request. Even if sometime giving more example would be nice since not every body, included me, has your level in PhpCs and in Php more generally.

But I'm sorry because, all I see is an expert big-headed who mistreats a novice.

Since the issue pre-date the announcement of the drop of CSS you may forgot this issue.
Since in a specific issue gsherwood talked about not fixing bug anymore, you may missed this message.
I'm not talking to you were a novice. I'm talking to you like you were human.
But it seems like you want to prove the all world you're omniscient. Fine.

@jrfnl
Copy link
Contributor Author

jrfnl commented Jan 4, 2020

Never you mind. You be you and good luck to you.

@jrfnl
Copy link
Contributor Author

jrfnl commented Jan 4, 2020

Even if sometime giving more example would be nice since not every body, included me, has your level in PhpCs and in Php more generally.

Oh and you do realize that this is exactly the opposite of the behaviour you accuse me off ?

I start from the presumption that people know what they are doing. If that's not the case, they can ask for more explanation, but if I'd give that explanation straight away, I'd be talking down to them.

@gsherwood
Copy link
Member

Not until the bug is either fixed or there is an RC for version 4.0.

I've been closing JS tokenizer issues because I didn't want anyone to spend time working on them given I'm dropping support. I also don't think anyone should be using PHPCS for checking CSS or JS standards, so I'd encourage anyone using it for that purpose to migrate away as soon as practical.

I'm happy to leave this open, but it's not something I'm going to devote time to. I would accept a PR to fix it, but I'd again encourage the use of a different tool if possible.

@jrfnl jrfnl closed this as completed Sep 16, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants