⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 antlrtreeadaptor.h

📁 ANTLR(ANother Tool for Language Recognition)它是这样的一种工具
💻 H
字号:
// [The "BSD licence"]// Copyright (c) 2006 Kay Roepke// All rights reserved.//// Redistribution and use in source and binary forms, with or without// modification, are permitted provided that the following conditions// are met:// 1. Redistributions of source code must retain the above copyright//    notice, this list of conditions and the following disclaimer.// 2. Redistributions in binary form must reproduce the above copyright//    notice, this list of conditions and the following disclaimer in the//    documentation and/or other materials provided with the distribution.// 3. The name of the author may not be used to endorse or promote products//    derived from this software without specific prior written permission.//// THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR// IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES// OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.// IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,// INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT// NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF// THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.#import <ANTLR/ANTLRTree.h>#import <ANTLR/ANTLRToken.h>#pragma warning tree/node diction is broken.@protocol ANTLRTreeAdaptor#pragma mark Construction+ (id<ANTLRTree>) newTreeWithToken:(ANTLRToken *) payload;+ (id<ANTLRTree>) emptyTree;+ (id) copyNode:(id<ANTLRTree>)aNode;	// copies just the node+ (id) copyTree:(id<ANTLRTree>)aTree;	// copies the entire subtree, recursively+ (void) addChild:(id<ANTLRTree>)child toTree:(id<ANTLRTree>)aTree;+ (id) makeNode:(id<ANTLRTree>)newRoot parentOf:(id<ANTLRTree>)oldRoot;+ (id<ANTLRTree>) postProcessTree:(id<ANTLRTree>)aTree;+ (unsigned int) uniqueIdForTree:(id<ANTLRTree>)aNode;#pragma mark Rewrite Rules+ (void) addTokenAsChild:(ANTLRToken *)child toTree:(id<ANTLRTree>)aTree;+ (id<ANTLRTree>) makeToken:(ANTLRToken *)newRoot parentOf:(id<ANTLRTree>)oldRoot;+ (id<ANTLRTree>) newTreeWithTokenType:(int)tokenType;+ (id<ANTLRTree>) newTreeWithTokenType:(int)tokenType text:(NSString *)tokenText;+ (id<ANTLRTree>) newTreeWithToken:(ANTLRToken *)fromToken tokenType:(int)tokenType;+ (id<ANTLRTree>) newTreeWithToken:(ANTLRToken *)fromToken tokenType:(int)tokenType text:(NSString *)tokenText;+ (id<ANTLRTree>) newTreeWithToken:(ANTLRToken *)fromToken text:(NSString *)tokenText;#pragma mark Content+ (int) tokenTypeForNode:(id<ANTLRTree>)aNode;+ (void) setTokenType:(int)tokenType forNode:(id)aNode;+ (NSString *) textForNode:(id<ANTLRTree>)aNode;+ (void) setText:(NSString *)tokenText forNode:(id<ANTLRTree>)aNode;+ (void) setBoundariesForTree:(id<ANTLRTree>)aTree fromToken:(ANTLRToken *)startToken toToken:(ANTLRToken *)stopToken;+ (int) tokenStartIndexForTree:(id<ANTLRTree>)aTree;+ (int) tokenStopIndexForTree:(id<ANTLRTree>)aTree;#pragma mark Navigation / Tree Parsing+ (id<ANTLRTree>) childForNode:(id<ANTLRTree>) aNode atIndex:(int) i;+ (int) childCountForTree:(id<ANTLRTree>) aTree;@end#pragma mark Abstract Base Class@interface ANTLRTreeAdaptor : NSObject <ANTLRTreeAdaptor> {}#pragma mark Construction+ (id<ANTLRTree>) newTreeWithToken:(ANTLRToken *) payload;+ (id<ANTLRTree>) emptyTree;+ (id) copyNode:(id<ANTLRTree>)aNode;	// copies just the node+ (id) copyTree:(id<ANTLRTree>)aTree;	// copies the entire subtree, recursively+ (void) addChild:(id<ANTLRTree>)child toTree:(id<ANTLRTree>)aTree;+ (id) makeNode:(id<ANTLRTree>)newRoot parentOf:(id<ANTLRTree>)oldRoot;+ (id<ANTLRTree>) postProcessTree:(id<ANTLRTree>)aTree;+ (unsigned int) uniqueIdForTree:(id<ANTLRTree>)aNode;// these are not part of the protocol, but used internally in the out-of-the-box provided implementation// this is done to minimize the impact for custom trees+ (ANTLRToken *) newTokenWithToken:(ANTLRToken *)fromToken;+ (ANTLRToken *) newTokenWithTokenType:(int)tokenType text:(NSString *)tokenText;#pragma mark Rewrite Rules+ (void) addTokenAsChild:(ANTLRToken *)child toTree:(id<ANTLRTree>)aTree;+ (id<ANTLRTree>) makeToken:(ANTLRToken *)newRoot parentOf:(id<ANTLRTree>)oldRoot;+ (id<ANTLRTree>) newTreeWithToken:(ANTLRToken *)fromToken tokenType:(int)tokenType;+ (id<ANTLRTree>) newTreeWithToken:(ANTLRToken *)fromToken tokenType:(int)tokenType text:(NSString *)tokenText;+ (id<ANTLRTree>) newTreeWithToken:(ANTLRToken *)fromToken text:(NSString *)tokenText;// these are not part of the protocol, but are here for the benefit of ANTLRCommonTreeAdaptor// strictly, they are not required for ANTLR trees. simply an implementation detail, leave'em out in your// custom tree adaptors if you wish.+ (ANTLRToken *) newTokenWithToken:(ANTLRToken *)fromToken;+ (ANTLRToken *) newTokenWithTokenType:(int)tokenType text:(NSString *)tokenText;#pragma mark Content+ (int) tokenTypeForNode:(id<ANTLRTree>)aNode;+ (void) setTokenType:(int)tokenType forNode:(id)aNode;+ (NSString *) textForNode:(id<ANTLRTree>)aNode;+ (void) setText:(NSString *)tokenText forNode:(id<ANTLRTree>)aNode;+ (void) setBoundariesForTree:(id<ANTLRTree>)aTree fromToken:(ANTLRToken *)startToken toToken:(ANTLRToken *)stopToken;+ (int) tokenStartIndexForTree:(id<ANTLRTree>)aTree;+ (int) tokenStopIndexForTree:(id<ANTLRTree>)aTree;#pragma mark Navigation / Tree Parsing+ (id<ANTLRTree>) childForNode:(id<ANTLRTree>) aNode atIndex:(int) i;+ (int) childCountForTree:(id<ANTLRTree>) aTree;@end

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -