PopCurrentScope() public method

public PopCurrentScope ( ) : void
return void
示例#1
0
 private static void HandleEndEach(SuperSimpleTemplateParserState state)
 {
     state.AssertInsideIterationBlock();
     state.PopCurrentScope();
 }
 private static void HandleEndConditional(SuperSimpleTemplateParserState state)
 {
     state.AssertInsideConditionalBlock();
     state.PopCurrentScope();
 }
示例#3
0
 private static void HandleEndConditional(SuperSimpleTemplateParserState state)
 {
     state.AssertInsideConditionalBlock();
     state.PopCurrentScope();
 }
 private static void HandleEndEach(SuperSimpleTemplateParserState state)
 {
     state.AssertInsideIterationBlock();
     state.PopCurrentScope();
 }