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
  6309f94a_9147_dde5_5f3f_be83bb37bd60["parseString()"]
  70ecccf0_c8f4_c3b2_8f70_e182f323e6c3["parseModel()"]
  70ecccf0_c8f4_c3b2_8f70_e182f323e6c3 -->|calls| 6309f94a_9147_dde5_5f3f_be83bb37bd60
  8b1e6824_ae5a_5ead_1487_de26084ef91d["parseBracket()"]
  8b1e6824_ae5a_5ead_1487_de26084ef91d -->|calls| 6309f94a_9147_dde5_5f3f_be83bb37bd60
  fc07ad5d_d43e_d857_dbf9_000c42a5dd51["eof()"]
  6309f94a_9147_dde5_5f3f_be83bb37bd60 -->|calls| fc07ad5d_d43e_d857_dbf9_000c42a5dd51
  1c8dccd2_3d16_da45_0f66_656b9394492c["next()"]
  6309f94a_9147_dde5_5f3f_be83bb37bd60 -->|calls| 1c8dccd2_3d16_da45_0f66_656b9394492c
  style 6309f94a_9147_dde5_5f3f_be83bb37bd60 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
    }
  }
}

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