MCPcopy Index your code
hub / github.com/lutzroeder/netron / _isNewline

Method _isNewline

source/python.js:1823–1833  ·  view source on GitHub ↗
(c)

Source from the content-addressed store, hash-verified

1821 return false;
1822 }
1823 static _isNewline(c) {
1824 switch (c) {
1825 case '\n':
1826 case '\r':
1827 case '\u2028': // 8232
1828 case '\u2029': // 8233
1829 return true;
1830 default:
1831 return false;
1832 }
1833 }
1834 static _isIdentifierStartChar(c) {
1835 if (c < 'A') {
1836 return c === '$';

Callers 4

readMethod · 0.45
_skipLineMethod · 0.45
_skipWhitespaceMethod · 0.45
_tokenizeMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected