ripple 0.2.17 → 0.2.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -198,7 +198,6 @@ function RipplePlugin(config) {
|
|
|
198
198
|
if (ch === 123 && this.exprAllowed) {
|
|
199
199
|
return this.getTokenFromCode(ch);
|
|
200
200
|
}
|
|
201
|
-
debugger;
|
|
202
201
|
throw new Error('TODO: Invalid syntax');
|
|
203
202
|
|
|
204
203
|
case 47: // '/'
|
|
@@ -662,7 +661,6 @@ function get_comment_handlers(source, comments, index = 0) {
|
|
|
662
661
|
// Special case: Trailing comments after the root node (which can only happen for expression tags or for Program nodes).
|
|
663
662
|
// Adding them ensures that we can later detect the end of the expression tag correctly.
|
|
664
663
|
if (comments.length > 0 && (comments[0].start >= ast.end || ast.type === 'Program')) {
|
|
665
|
-
debugger;
|
|
666
664
|
(ast.trailingComments ||= []).push(...comments.splice(0));
|
|
667
665
|
}
|
|
668
666
|
},
|