Home / Function/ parseString() — vue Function Reference

parseString() — vue Function Reference

Architecture documentation for the parseString() function in model.ts from the vue codebase.

Entity Profile

Dependency Diagram

graph TD
  2e3af65f_b5cd_e829_8dad_6578d27848b0["parseString()"]
  14ce6670_3bc0_35db_e42d_49644525de32["parseModel()"]
  14ce6670_3bc0_35db_e42d_49644525de32 -->|calls| 2e3af65f_b5cd_e829_8dad_6578d27848b0
  8a75e6be_b447_c65f_4ba2_9b76eeb43a25["parseBracket()"]
  8a75e6be_b447_c65f_4ba2_9b76eeb43a25 -->|calls| 2e3af65f_b5cd_e829_8dad_6578d27848b0
  5d80e421_7f90_5c59_8eab_856d9d525b52["eof()"]
  2e3af65f_b5cd_e829_8dad_6578d27848b0 -->|calls| 5d80e421_7f90_5c59_8eab_856d9d525b52
  bd10ae41_363d_f34c_9d24_7a6de189560e["next()"]
  2e3af65f_b5cd_e829_8dad_6578d27848b0 -->|calls| bd10ae41_363d_f34c_9d24_7a6de189560e
  style 2e3af65f_b5cd_e829_8dad_6578d27848b0 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

src/compiler/directives/model.ts lines 137–145

function parseString(chr: number): void {
  const stringQuote = chr
  while (!eof()) {
    chr = next()
    if (chr === stringQuote) {
      break
    }
  }
}

Domain

Subdomains

Calls

Frequently Asked Questions

What does parseString() do?
parseString() is a function in the vue codebase.
What does parseString() call?
parseString() calls 2 function(s): eof, next.
What calls parseString()?
parseString() is called by 2 function(s): parseBracket, parseModel.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free