PopCurrentScope() public method

public PopCurrentScope ( ) : void
return void
Exemplo n.º 1
0
 private static void HandleEndEach(SuperSimpleTemplateParserState state)
 {
     state.AssertInsideIterationBlock();
     state.PopCurrentScope();
 }
 private static void HandleEndConditional(SuperSimpleTemplateParserState state)
 {
     state.AssertInsideConditionalBlock();
     state.PopCurrentScope();
 }
Exemplo n.º 3
0
 private static void HandleEndConditional(SuperSimpleTemplateParserState state)
 {
     state.AssertInsideConditionalBlock();
     state.PopCurrentScope();
 }
 private static void HandleEndEach(SuperSimpleTemplateParserState state)
 {
     state.AssertInsideIterationBlock();
     state.PopCurrentScope();
 }