Пример #1
0
        /**
         * CLASSES
         */


        public override void EnterClassDeclaration(AdvplParser.ClassDeclarationContext ctx)
        {
            String name = ctx.identifier().GetText();

            if (ctx.fromClass() != null)
            {
                genericEnterClass(name, ctx, ctx.fromClass().identifier().GetText());
            }
            else
            {
                genericEnterClass(name, ctx);
            }
        }
Пример #2
0
 public override void ExitClassDeclaration(AdvplParser.ClassDeclarationContext ctx)
 {
     genericExit();
 }