VE Lua Documentation

Press F to search!

eol

Definition


-- @/=[C]:-1
function eol(...)

Callers

@/inspector/External/CodeMirror/clike.js
  function maybeEOL(stream, state) {
    if (parserConfig.typeFirstDefinitions && stream.eol() && isTopScope(state.context))
      state.typeAtEndOfLine = typeBefore(stream, state, stream.pos)
    var escaped = false;
    while (!stream.eol()) {
      if (!escaped && stream.match('"""')) {
      var escaped = false, next, end = false;
      while (!stream.eol()) {
        if (!tripleString && !escaped && stream.match('"') ) {end = true; break;}
      var escaped = false, next, end = false;
      while (!stream.eol()) {
        if (!escaped && stream.match('"') &&
@/inspector/External/CodeMirror/sql.js
      return "number";
    } else if (ch == "?" && (stream.eatSpace() || stream.eol() || stream.eat(";"))) {
      // placeholders
@/inspector/Controllers/Formatter.js
            var stream = new CodeMirror.StringStream(line);
            while (!stream.eol()) {
                var innerMode = CodeMirror.innerMode(outerMode, state);
@/inspector/External/CodeMirror/htmlmixed.js
        state.inTag += stream.current()
        if (stream.eol()) state.inTag += " "
      }
@/inspector/External/CodeMirror/xml.js
    var closure = function(stream, state) {
      while (!stream.eol()) {
        if (stream.next() == quote) {
    return function(stream, state) {
      while (!stream.eol()) {
        if (stream.match(terminator)) {
@/inspector/External/CodeMirror/codemirror.js
  if (text == "") { callBlankLine(mode, state) }
  while (!stream.eol()) {
    readToken(mode, stream, state)
  if (asArray) { tokens = [] }
  while ((asArray || stream.pos < pos.ch) && !stream.eol()) {
    stream.start = stream.pos
  if (text == "") { extractLineClasses(callBlankLine(mode, state), lineClasses) }
  while (!stream.eol()) {
    if (stream.pos > cm.options.maxHighlightLength) {
@/inspector/External/CodeMirror/runmode.js
    if (!stream.string && mode.blankLine) mode.blankLine(state);
    while (!stream.eol()) {
      var style = mode.token(stream, state);
@/inspector/External/CodeMirror/coffeescript.js
    return function(stream, state) {
      while (!stream.eol()) {
        stream.eatWhile(/[^'"\/\\]/);
          stream.next();
          if (singleline && stream.eol()) {
            return outclass;
  function longComment(stream, state) {
    while (!stream.eol()) {
      stream.eatWhile(/[^#]/);
    }
    if (((current === "->" || current === "=>") && stream.eol())
        || style === "indent") {
    }
    if (state.dedent && stream.eol()) {
      if (state.scope.type == "coffee" && state.scope.prev)
@/inspector/Views/CodeMirrorAdditions.js
        // Otherwise _linkTokenize will stay as-is to parse more of the link.
        if (!stream.eol())
            state._linkTokenize = tokenizeEndOfLinkString;
        // _linkTokenize will stay as-is to parse more of the srcset.
        if (stream.eol() || (!state._linkQuoteCharacter || stream.peek() === state._linkQuoteCharacter))
            state._linkTokenize = tokenizeEndOfLinkString;

                while (!stream.eol() && stream.peek() !== " ")
                    stream.next();

        while (!stream.eol()) {
            let tokenType = mode.token(stream, state);

    while (!stream.eol()) {
        let style = mode.token(stream, state);
@/inspector/External/CodeMirror/clojure.js
                            stream.eatSpace();
                            if (stream.eol() || stream.peek() == ";") {
                                // nothing significant after