MCPcopy Create free account
hub / github.com/cxasm/notepad-- / PushStateToStack

Function PushStateToStack

src/qscint/scintilla/lexers/LexPython.cpp:122–127  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

120}
121
122void PushStateToStack(int state, std::vector<SingleFStringExpState> &stack, SingleFStringExpState *&currentFStringExp) {
123 SingleFStringExpState single = {state, 0};
124 stack.push_back(single);
125
126 currentFStringExp = &stack.back();
127}
128
129int PopFromStateStack(std::vector<SingleFStringExpState> &stack, SingleFStringExpState *&currentFStringExp) {
130 int state = 0;

Callers 1

LexMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected