Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1 | //===--- MinimalAction.cpp - Implement the MinimalAction class ------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 0bc735f | 2007-12-29 19:59:25 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements the MinimalAction interface. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "clang/Parse/Parser.h" |
| 15 | #include "clang/Parse/DeclSpec.h" |
| 16 | #include "clang/Parse/Scope.h" |
Chris Lattner | ace6507 | 2009-05-01 16:33:20 +0000 | [diff] [blame] | 17 | #include "clang/Basic/TargetInfo.h" |
Chris Lattner | e1ae1e9 | 2009-01-18 09:39:41 +0000 | [diff] [blame] | 18 | #include "llvm/Support/Allocator.h" |
| 19 | #include "llvm/Support/RecyclingAllocator.h" |
Chris Lattner | 21ff9c9 | 2009-03-05 01:25:28 +0000 | [diff] [blame] | 20 | #include "llvm/Support/raw_ostream.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 21 | using namespace clang; |
| 22 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 23 | /// Out-of-line virtual destructor to provide home for ActionBase class. |
Chris Lattner | 0102c30 | 2009-03-05 07:24:28 +0000 | [diff] [blame] | 24 | ActionBase::~ActionBase() {} |
| 25 | |
| 26 | /// Out-of-line virtual destructor to provide home for Action class. |
| 27 | Action::~Action() {} |
| 28 | |
| 29 | // Defined out-of-line here because of dependecy on AttributeList |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 30 | Action::DeclPtrTy Action::ActOnUsingDirective(Scope *CurScope, |
| 31 | SourceLocation UsingLoc, |
| 32 | SourceLocation NamespcLoc, |
| 33 | const CXXScopeSpec &SS, |
| 34 | SourceLocation IdentLoc, |
| 35 | IdentifierInfo *NamespcName, |
| 36 | AttributeList *AttrList) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 37 | |
Chris Lattner | 0102c30 | 2009-03-05 07:24:28 +0000 | [diff] [blame] | 38 | // FIXME: Parser seems to assume that Action::ActOn* takes ownership over |
| 39 | // passed AttributeList, however other actions don't free it, is it |
| 40 | // temporary state or bug? |
| 41 | delete AttrList; |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 42 | return DeclPtrTy(); |
Chris Lattner | 0102c30 | 2009-03-05 07:24:28 +0000 | [diff] [blame] | 43 | } |
| 44 | |
Douglas Gregor | 12c118a | 2009-11-04 16:30:06 +0000 | [diff] [blame] | 45 | // Defined out-of-line here because of dependency on AttributeList |
Douglas Gregor | 9cfbe48 | 2009-06-20 00:51:54 +0000 | [diff] [blame] | 46 | Action::DeclPtrTy Action::ActOnUsingDeclaration(Scope *CurScope, |
Anders Carlsson | 595adc1 | 2009-08-29 19:54:19 +0000 | [diff] [blame] | 47 | AccessSpecifier AS, |
John McCall | 60fa3cf | 2009-12-11 02:10:03 +0000 | [diff] [blame] | 48 | bool HasUsingKeyword, |
Anders Carlsson | 595adc1 | 2009-08-29 19:54:19 +0000 | [diff] [blame] | 49 | SourceLocation UsingLoc, |
| 50 | const CXXScopeSpec &SS, |
Douglas Gregor | 12c118a | 2009-11-04 16:30:06 +0000 | [diff] [blame] | 51 | UnqualifiedId &Name, |
Anders Carlsson | 595adc1 | 2009-08-29 19:54:19 +0000 | [diff] [blame] | 52 | AttributeList *AttrList, |
John McCall | 7ba107a | 2009-11-18 02:36:19 +0000 | [diff] [blame] | 53 | bool IsTypeName, |
| 54 | SourceLocation TypenameLoc) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 55 | |
Douglas Gregor | 9cfbe48 | 2009-06-20 00:51:54 +0000 | [diff] [blame] | 56 | // FIXME: Parser seems to assume that Action::ActOn* takes ownership over |
| 57 | // passed AttributeList, however other actions don't free it, is it |
| 58 | // temporary state or bug? |
| 59 | delete AttrList; |
| 60 | return DeclPtrTy(); |
| 61 | } |
| 62 | |
Chris Lattner | 0102c30 | 2009-03-05 07:24:28 +0000 | [diff] [blame] | 63 | |
Chris Lattner | 49f28ca | 2009-03-05 08:00:35 +0000 | [diff] [blame] | 64 | void PrettyStackTraceActionsDecl::print(llvm::raw_ostream &OS) const { |
Chris Lattner | 21ff9c9 | 2009-03-05 01:25:28 +0000 | [diff] [blame] | 65 | if (Loc.isValid()) { |
| 66 | Loc.print(OS, SM); |
| 67 | OS << ": "; |
| 68 | } |
| 69 | OS << Message; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 70 | |
Chris Lattner | 21ff9c9 | 2009-03-05 01:25:28 +0000 | [diff] [blame] | 71 | std::string Name = Actions.getDeclName(TheDecl); |
| 72 | if (!Name.empty()) |
| 73 | OS << " '" << Name << '\''; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 74 | |
Chris Lattner | 21ff9c9 | 2009-03-05 01:25:28 +0000 | [diff] [blame] | 75 | OS << '\n'; |
| 76 | } |
| 77 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 78 | /// TypeNameInfo - A link exists here for each scope that an identifier is |
| 79 | /// defined. |
Chris Lattner | e1ae1e9 | 2009-01-18 09:39:41 +0000 | [diff] [blame] | 80 | namespace { |
| 81 | struct TypeNameInfo { |
| 82 | TypeNameInfo *Prev; |
| 83 | bool isTypeName; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 84 | |
Chris Lattner | e1ae1e9 | 2009-01-18 09:39:41 +0000 | [diff] [blame] | 85 | TypeNameInfo(bool istypename, TypeNameInfo *prev) { |
| 86 | isTypeName = istypename; |
| 87 | Prev = prev; |
| 88 | } |
| 89 | }; |
| 90 | |
| 91 | struct TypeNameInfoTable { |
| 92 | llvm::RecyclingAllocator<llvm::BumpPtrAllocator, TypeNameInfo> Allocator; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 93 | |
Chris Lattner | e1ae1e9 | 2009-01-18 09:39:41 +0000 | [diff] [blame] | 94 | void AddEntry(bool isTypename, IdentifierInfo *II) { |
| 95 | TypeNameInfo *TI = Allocator.Allocate<TypeNameInfo>(); |
Chris Lattner | f26d510 | 2009-03-24 17:05:27 +0000 | [diff] [blame] | 96 | new (TI) TypeNameInfo(isTypename, II->getFETokenInfo<TypeNameInfo>()); |
Chris Lattner | e1ae1e9 | 2009-01-18 09:39:41 +0000 | [diff] [blame] | 97 | II->setFETokenInfo(TI); |
| 98 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 99 | |
Chris Lattner | e1ae1e9 | 2009-01-18 09:39:41 +0000 | [diff] [blame] | 100 | void DeleteEntry(TypeNameInfo *Entry) { |
| 101 | Entry->~TypeNameInfo(); |
| 102 | Allocator.Deallocate(Entry); |
| 103 | } |
| 104 | }; |
| 105 | } |
| 106 | |
| 107 | static TypeNameInfoTable *getTable(void *TP) { |
| 108 | return static_cast<TypeNameInfoTable*>(TP); |
| 109 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 110 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 111 | MinimalAction::MinimalAction(Preprocessor &pp) |
Chris Lattner | e1ae1e9 | 2009-01-18 09:39:41 +0000 | [diff] [blame] | 112 | : Idents(pp.getIdentifierTable()), PP(pp) { |
| 113 | TypeNameInfoTablePtr = new TypeNameInfoTable(); |
| 114 | } |
| 115 | |
| 116 | MinimalAction::~MinimalAction() { |
| 117 | delete getTable(TypeNameInfoTablePtr); |
| 118 | } |
Daniel Dunbar | e10b0f2 | 2008-10-31 08:56:51 +0000 | [diff] [blame] | 119 | |
| 120 | void MinimalAction::ActOnTranslationUnitScope(SourceLocation Loc, Scope *S) { |
Steve Naroff | 8ee529b | 2007-10-31 18:42:27 +0000 | [diff] [blame] | 121 | TUScope = S; |
Chris Lattner | e1ae1e9 | 2009-01-18 09:39:41 +0000 | [diff] [blame] | 122 | |
| 123 | TypeNameInfoTable &TNIT = *getTable(TypeNameInfoTablePtr); |
Chris Lattner | ace6507 | 2009-05-01 16:33:20 +0000 | [diff] [blame] | 124 | |
| 125 | if (PP.getTargetInfo().getPointerWidth(0) >= 64) { |
| 126 | // Install [u]int128_t for 64-bit targets. |
| 127 | TNIT.AddEntry(true, &Idents.get("__int128_t")); |
| 128 | TNIT.AddEntry(true, &Idents.get("__uint128_t")); |
| 129 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 130 | |
Chris Lattner | ace6507 | 2009-05-01 16:33:20 +0000 | [diff] [blame] | 131 | if (PP.getLangOptions().ObjC1) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 132 | // Recognize the ObjC built-in type identifiers as types. |
Chris Lattner | ace6507 | 2009-05-01 16:33:20 +0000 | [diff] [blame] | 133 | TNIT.AddEntry(true, &Idents.get("id")); |
| 134 | TNIT.AddEntry(true, &Idents.get("SEL")); |
| 135 | TNIT.AddEntry(true, &Idents.get("Class")); |
| 136 | TNIT.AddEntry(true, &Idents.get("Protocol")); |
| 137 | } |
Steve Naroff | 8ee529b | 2007-10-31 18:42:27 +0000 | [diff] [blame] | 138 | } |
| 139 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 140 | /// isTypeName - This looks at the IdentifierInfo::FETokenInfo field to |
| 141 | /// determine whether the name is a type name (objc class name or typedef) or |
| 142 | /// not in this scope. |
Argyrios Kyrtzidis | eb83ecd | 2008-11-08 16:45:02 +0000 | [diff] [blame] | 143 | /// |
| 144 | /// FIXME: Use the passed CXXScopeSpec for accurate C++ type checking. |
Argyrios Kyrtzidis | 39caa08 | 2008-08-01 10:35:27 +0000 | [diff] [blame] | 145 | Action::TypeTy * |
Douglas Gregor | b696ea3 | 2009-02-04 17:00:24 +0000 | [diff] [blame] | 146 | MinimalAction::getTypeName(IdentifierInfo &II, SourceLocation Loc, |
Douglas Gregor | 42c39f3 | 2009-08-26 18:27:52 +0000 | [diff] [blame] | 147 | Scope *S, const CXXScopeSpec *SS, |
Douglas Gregor | f6e6fc8 | 2009-11-20 22:03:38 +0000 | [diff] [blame] | 148 | bool isClassName, TypeTy *ObjectType) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 149 | if (TypeNameInfo *TI = II.getFETokenInfo<TypeNameInfo>()) |
| 150 | if (TI->isTypeName) |
| 151 | return TI; |
| 152 | return 0; |
| 153 | } |
| 154 | |
Douglas Gregor | b48fe38 | 2008-10-31 09:07:45 +0000 | [diff] [blame] | 155 | /// isCurrentClassName - Always returns false, because MinimalAction |
| 156 | /// does not support C++ classes with constructors. |
Argyrios Kyrtzidis | eb83ecd | 2008-11-08 16:45:02 +0000 | [diff] [blame] | 157 | bool MinimalAction::isCurrentClassName(const IdentifierInfo &, Scope *, |
| 158 | const CXXScopeSpec *) { |
Douglas Gregor | b48fe38 | 2008-10-31 09:07:45 +0000 | [diff] [blame] | 159 | return false; |
| 160 | } |
| 161 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 162 | TemplateNameKind |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 163 | MinimalAction::isTemplateName(Scope *S, |
Douglas Gregor | 014e88d | 2009-11-03 23:16:33 +0000 | [diff] [blame] | 164 | const CXXScopeSpec &SS, |
| 165 | UnqualifiedId &Name, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 166 | TypeTy *ObjectType, |
Douglas Gregor | 495c35d | 2009-08-25 22:51:20 +0000 | [diff] [blame] | 167 | bool EnteringScope, |
| 168 | TemplateTy &TemplateDecl) { |
Douglas Gregor | 55f6b14 | 2009-02-09 18:46:07 +0000 | [diff] [blame] | 169 | return TNK_Non_template; |
Douglas Gregor | d6fb7ef | 2008-12-18 19:37:40 +0000 | [diff] [blame] | 170 | } |
| 171 | |
Steve Naroff | 08d92e4 | 2007-09-15 18:49:24 +0000 | [diff] [blame] | 172 | /// ActOnDeclarator - If this is a typedef declarator, we modify the |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 173 | /// IdentifierInfo::FETokenInfo field to keep track of this fact, until S is |
| 174 | /// popped. |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 175 | Action::DeclPtrTy |
Chris Lattner | 682bf92 | 2009-03-29 16:50:03 +0000 | [diff] [blame] | 176 | MinimalAction::ActOnDeclarator(Scope *S, Declarator &D) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 177 | IdentifierInfo *II = D.getIdentifier(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 178 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 179 | // If there is no identifier associated with this declarator, bail out. |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 180 | if (II == 0) return DeclPtrTy(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 181 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 182 | TypeNameInfo *weCurrentlyHaveTypeInfo = II->getFETokenInfo<TypeNameInfo>(); |
| 183 | bool isTypeName = |
| 184 | D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_typedef; |
| 185 | |
| 186 | // this check avoids creating TypeNameInfo objects for the common case. |
Ted Kremenek | a34ea07 | 2008-08-04 22:51:42 +0000 | [diff] [blame] | 187 | // It does need to handle the uncommon case of shadowing a typedef name with a |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 188 | // non-typedef name. e.g. { typedef int a; a xx; { int a; } } |
| 189 | if (weCurrentlyHaveTypeInfo || isTypeName) { |
Chris Lattner | e1ae1e9 | 2009-01-18 09:39:41 +0000 | [diff] [blame] | 190 | // Allocate and add the 'TypeNameInfo' "decl". |
| 191 | getTable(TypeNameInfoTablePtr)->AddEntry(isTypeName, II); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 192 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 193 | // Remember that this needs to be removed when the scope is popped. |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 194 | S->AddDecl(DeclPtrTy::make(II)); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 195 | } |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 196 | return DeclPtrTy(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 197 | } |
| 198 | |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 199 | Action::DeclPtrTy |
Chris Lattner | cfb0ef5 | 2008-07-21 07:13:18 +0000 | [diff] [blame] | 200 | MinimalAction::ActOnStartClassInterface(SourceLocation AtInterfaceLoc, |
Chris Lattner | 06036d3 | 2008-07-26 04:13:19 +0000 | [diff] [blame] | 201 | IdentifierInfo *ClassName, |
| 202 | SourceLocation ClassLoc, |
| 203 | IdentifierInfo *SuperName, |
| 204 | SourceLocation SuperLoc, |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 205 | const DeclPtrTy *ProtoRefs, |
Chris Lattner | 06036d3 | 2008-07-26 04:13:19 +0000 | [diff] [blame] | 206 | unsigned NumProtocols, |
| 207 | SourceLocation EndProtoLoc, |
| 208 | AttributeList *AttrList) { |
Chris Lattner | e1ae1e9 | 2009-01-18 09:39:41 +0000 | [diff] [blame] | 209 | // Allocate and add the 'TypeNameInfo' "decl". |
| 210 | getTable(TypeNameInfoTablePtr)->AddEntry(true, ClassName); |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 211 | return DeclPtrTy(); |
Steve Naroff | 3536b44 | 2007-09-06 21:24:23 +0000 | [diff] [blame] | 212 | } |
| 213 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 214 | /// ActOnForwardClassDeclaration - |
| 215 | /// Scope will always be top level file scope. |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 216 | Action::DeclPtrTy |
Steve Naroff | e440eb8 | 2007-10-10 17:32:04 +0000 | [diff] [blame] | 217 | MinimalAction::ActOnForwardClassDeclaration(SourceLocation AtClassLoc, |
Ted Kremenek | c09cba6 | 2009-11-17 23:12:20 +0000 | [diff] [blame] | 218 | IdentifierInfo **IdentList, |
| 219 | SourceLocation *IdentLocs, |
| 220 | unsigned NumElts) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 221 | for (unsigned i = 0; i != NumElts; ++i) { |
Chris Lattner | e1ae1e9 | 2009-01-18 09:39:41 +0000 | [diff] [blame] | 222 | // Allocate and add the 'TypeNameInfo' "decl". |
| 223 | getTable(TypeNameInfoTablePtr)->AddEntry(true, IdentList[i]); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 224 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 225 | // Remember that this needs to be removed when the scope is popped. |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 226 | TUScope->AddDecl(DeclPtrTy::make(IdentList[i])); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 227 | } |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 228 | return DeclPtrTy(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 229 | } |
| 230 | |
Ted Kremenek | a34ea07 | 2008-08-04 22:51:42 +0000 | [diff] [blame] | 231 | /// ActOnPopScope - When a scope is popped, if any typedefs are now |
| 232 | /// out-of-scope, they are removed from the IdentifierInfo::FETokenInfo field. |
Steve Naroff | 640db42 | 2007-10-10 17:45:44 +0000 | [diff] [blame] | 233 | void MinimalAction::ActOnPopScope(SourceLocation Loc, Scope *S) { |
Chris Lattner | e1ae1e9 | 2009-01-18 09:39:41 +0000 | [diff] [blame] | 234 | TypeNameInfoTable &Table = *getTable(TypeNameInfoTablePtr); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 235 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 236 | for (Scope::decl_iterator I = S->decl_begin(), E = S->decl_end(); |
| 237 | I != E; ++I) { |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 238 | IdentifierInfo &II = *(*I).getAs<IdentifierInfo>(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 239 | TypeNameInfo *TI = II.getFETokenInfo<TypeNameInfo>(); |
| 240 | assert(TI && "This decl didn't get pushed??"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 241 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 242 | if (TI) { |
| 243 | TypeNameInfo *Next = TI->Prev; |
Chris Lattner | e1ae1e9 | 2009-01-18 09:39:41 +0000 | [diff] [blame] | 244 | Table.DeleteEntry(TI); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 245 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 246 | II.setFETokenInfo(Next); |
| 247 | } |
| 248 | } |
| 249 | } |