Changeset 3542:c4e56e611382 for admin/js/codemirror/mode
- Timestamp:
- 03/21/17 10:47:19 (8 years ago)
- Branch:
- default
- Location:
- admin/js/codemirror/mode
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/js/codemirror/mode/css/css.js
r3532 r3542 668 668 "source-atop", "source-in", "source-out", "source-over", "space", "space-around", "space-between", "spell-out", "square", 669 669 "square-button", "start", "static", "status-bar", "stretch", "stroke", "sub", 670 "subpixel-antialiased", "super", "sw-resize", "symbolic", "symbols", " table",670 "subpixel-antialiased", "super", "sw-resize", "symbolic", "symbols", "system-ui", "table", 671 671 "table-caption", "table-cell", "table-column", "table-column-group", 672 672 "table-footer-group", "table-header-group", "table-row", "table-row-group", -
admin/js/codemirror/mode/javascript/javascript.js
r3532 r3542 635 635 } 636 636 function classNameAfter(type, value) { 637 if (value == "<") return cont(pushlex(">"), commasep(typeexpr, ">"), poplex, classNameAfter) 637 638 if (value == "extends" || value == "implements" || (isTS && type == ",")) 638 639 return cont(isTS ? typeexpr : expression, classNameAfter); … … 662 663 if (value == "?") return cont(classfield) 663 664 if (type == ":") return cont(typeexpr, maybeAssign) 665 if (value == "=") return cont(expressionNoComma) 664 666 return pass(functiondef) 665 667 }
Note: See TracChangeset
for help on using the changeset viewer.