Mercurial > emacs
annotate test/cedet/tests/testsubclass.cpp @ 112400:c729a73f3e52
Merge: aclocal.m4: tweaks to regenerate more conveniently
author | Paul Eggert <eggert@cs.ucla.edu> |
---|---|
date | Fri, 21 Jan 2011 12:24:31 -0800 |
parents | ef719132ddfa |
children |
rev | line source |
---|---|
107698
89eccb374dec
Update Semantic test copyrights, delete some test files (Bug#4656).
Chong Yidong <cyd@stupidchicken.com>
parents:
105377
diff
changeset
|
1 // testsubclass.cpp --- unit test for analyzer and complex C++ inheritance |
89eccb374dec
Update Semantic test copyrights, delete some test files (Bug#4656).
Chong Yidong <cyd@stupidchicken.com>
parents:
105377
diff
changeset
|
2 |
112218
376148b31b5e
Add 2011 to FSF/AIST copyright years.
Glenn Morris <rgm@gnu.org>
parents:
107698
diff
changeset
|
3 // Copyright (C) 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc. |
107698
89eccb374dec
Update Semantic test copyrights, delete some test files (Bug#4656).
Chong Yidong <cyd@stupidchicken.com>
parents:
105377
diff
changeset
|
4 |
89eccb374dec
Update Semantic test copyrights, delete some test files (Bug#4656).
Chong Yidong <cyd@stupidchicken.com>
parents:
105377
diff
changeset
|
5 // Author: Eric M. Ludlam <eric@siege-engine.com> |
89eccb374dec
Update Semantic test copyrights, delete some test files (Bug#4656).
Chong Yidong <cyd@stupidchicken.com>
parents:
105377
diff
changeset
|
6 |
89eccb374dec
Update Semantic test copyrights, delete some test files (Bug#4656).
Chong Yidong <cyd@stupidchicken.com>
parents:
105377
diff
changeset
|
7 // This file is part of GNU Emacs. |
89eccb374dec
Update Semantic test copyrights, delete some test files (Bug#4656).
Chong Yidong <cyd@stupidchicken.com>
parents:
105377
diff
changeset
|
8 |
89eccb374dec
Update Semantic test copyrights, delete some test files (Bug#4656).
Chong Yidong <cyd@stupidchicken.com>
parents:
105377
diff
changeset
|
9 // GNU Emacs is free software: you can redistribute it and/or modify |
89eccb374dec
Update Semantic test copyrights, delete some test files (Bug#4656).
Chong Yidong <cyd@stupidchicken.com>
parents:
105377
diff
changeset
|
10 // it under the terms of the GNU General Public License as published by |
89eccb374dec
Update Semantic test copyrights, delete some test files (Bug#4656).
Chong Yidong <cyd@stupidchicken.com>
parents:
105377
diff
changeset
|
11 // the Free Software Foundation, either version 3 of the License, or |
89eccb374dec
Update Semantic test copyrights, delete some test files (Bug#4656).
Chong Yidong <cyd@stupidchicken.com>
parents:
105377
diff
changeset
|
12 // (at your option) any later version. |
89eccb374dec
Update Semantic test copyrights, delete some test files (Bug#4656).
Chong Yidong <cyd@stupidchicken.com>
parents:
105377
diff
changeset
|
13 |
89eccb374dec
Update Semantic test copyrights, delete some test files (Bug#4656).
Chong Yidong <cyd@stupidchicken.com>
parents:
105377
diff
changeset
|
14 // GNU Emacs is distributed in the hope that it will be useful, |
89eccb374dec
Update Semantic test copyrights, delete some test files (Bug#4656).
Chong Yidong <cyd@stupidchicken.com>
parents:
105377
diff
changeset
|
15 // but WITHOUT ANY WARRANTY; without even the implied warranty of |
89eccb374dec
Update Semantic test copyrights, delete some test files (Bug#4656).
Chong Yidong <cyd@stupidchicken.com>
parents:
105377
diff
changeset
|
16 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
89eccb374dec
Update Semantic test copyrights, delete some test files (Bug#4656).
Chong Yidong <cyd@stupidchicken.com>
parents:
105377
diff
changeset
|
17 // GNU General Public License for more details. |
89eccb374dec
Update Semantic test copyrights, delete some test files (Bug#4656).
Chong Yidong <cyd@stupidchicken.com>
parents:
105377
diff
changeset
|
18 |
89eccb374dec
Update Semantic test copyrights, delete some test files (Bug#4656).
Chong Yidong <cyd@stupidchicken.com>
parents:
105377
diff
changeset
|
19 // You should have received a copy of the GNU General Public License |
89eccb374dec
Update Semantic test copyrights, delete some test files (Bug#4656).
Chong Yidong <cyd@stupidchicken.com>
parents:
105377
diff
changeset
|
20 // along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. |
104494 | 21 |
22 //#include <iostream> | |
23 #include "testsubclass.hh" | |
24 | |
25 void animal::moose::setFeet(int numfeet) //^1^ | |
26 { | |
27 if (numfeet > 4) { | |
28 std::cerr << "Why would a moose have more than 4 feet?" << std::endl; | |
29 return; | |
30 } | |
31 | |
32 fFeet = numfeet; | |
33 } | |
34 | |
35 int animal::moose::getFeet() //^2^ | |
36 { | |
37 return fFeet; | |
38 } | |
39 | |
40 void animal::moose::doNothing() //^3^ | |
41 { | |
42 animal::moose foo(); | |
43 | |
44 fFeet = N// -15- | |
45 ; // #15# ( "NAME1" "NAME2" "NAME3" ) | |
46 } | |
47 | |
48 | |
49 void deer::moose::setAntlers(bool have_antlers) //^4^ | |
50 { | |
51 fAntlers = have_antlers; | |
52 } | |
53 | |
54 bool deer::moose::getAntlers() //^5^ | |
55 // %1% ( ( "testsubclass.cpp" "testsubclass.hh" ) ( "deer::moose::doSomething" "deer::moose::getAntlers" "moose" ) ) | |
56 { | |
57 return fAntlers; | |
58 } | |
59 | |
60 bool i_dont_have_symrefs() | |
61 // %2% ( ("testsubclass.cpp" ) ("i_dont_have_symrefs")) | |
62 { | |
63 } | |
64 | |
65 void deer::moose::doSomething() //^6^ | |
66 { | |
67 // All these functions should be identified by semantic analyzer. | |
68 getAntlers(); | |
69 setAntlers(true); | |
70 | |
71 getFeet(); | |
72 setFeet(true); | |
73 | |
74 doNothing(); | |
75 | |
76 fSomeField = true; | |
77 | |
78 fIsValid = true; | |
79 } | |
80 | |
81 void deer::alces::setLatin(bool l) { | |
82 fLatin = l; | |
83 } | |
84 | |
85 bool deer::alces::getLatin() { | |
86 return fLatin; | |
87 } | |
88 | |
89 void deer::alces::doLatinStuff(moose moosein) { | |
90 // All these functions should be identified by semantic analyzer. | |
91 getFeet(); | |
92 setFeet(true); | |
93 | |
94 getLatin(); | |
95 setLatin(true); | |
96 | |
97 doNothing(); | |
98 | |
99 deer::moose foo(); | |
100 | |
101 | |
102 } | |
103 | |
104 moose deer::alces::createMoose() | |
105 { | |
106 moose MooseVariableName; | |
107 bool tmp; | |
108 int itmp; | |
109 bool fool; | |
110 int fast; | |
111 | |
112 MooseVariableName = createMoose(); | |
113 | |
114 doLatinStuff(MooseVariableName); | |
107698
89eccb374dec
Update Semantic test copyrights, delete some test files (Bug#4656).
Chong Yidong <cyd@stupidchicken.com>
parents:
105377
diff
changeset
|
115 |
104494 | 116 tmp = this.f// -1- |
117 // #1# ( "fAlcesBool" "fIsValid" "fLatin" ) | |
118 ; | |
119 | |
120 itmp = this.f// -2- | |
121 // #2# ( "fAlcesInt" "fGreek" "fIsProtectedInt" ) | |
122 ; | |
123 | |
124 tmp = f// -3- | |
125 // #3# ( "fAlcesBool" "fIsValid" "fLatin" "fool" ) | |
126 ; | |
127 | |
128 itmp = f// -4- | |
129 // #4# ( "fAlcesInt" "fGreek" "fIsProtectedInt" "fast" ) | |
130 ; | |
131 | |
132 MooseVariableName = m// -5- | |
133 // #5# ( "moose" ) | |
134 | |
135 return MooseVariableName; | |
136 } | |
137 | |
138 /** Test Scope Changes | |
139 * | |
140 * This function is rigged to make sure the scope changes to account | |
141 * for different locations in local variable parsing. | |
142 */ | |
143 int someFunction(int mPickle) | |
144 { | |
145 moose mMoose = deer::alces::createMoose(); | |
107698
89eccb374dec
Update Semantic test copyrights, delete some test files (Bug#4656).
Chong Yidong <cyd@stupidchicken.com>
parents:
105377
diff
changeset
|
146 |
104494 | 147 if (mPickle == 1) { |
148 | |
149 int mOption1 = 2; | |
150 | |
151 m// -5- | |
152 // #5# ( "mMoose" "mOption1" "mPickle" ) | |
153 ; | |
154 | |
155 } else { | |
156 | |
157 int mOption2 = 2; | |
158 | |
159 m// -6- | |
160 // #6# ( "mMoose" "mOption2" "mPickle" ) | |
161 ; | |
162 } | |
163 | |
164 } | |
165 | |
166 // Thanks Ming-Wei Chang for this next example. | |
167 | |
168 namespace pub_priv { | |
169 | |
170 class A{ | |
171 private: | |
172 void private_a(){} | |
107698
89eccb374dec
Update Semantic test copyrights, delete some test files (Bug#4656).
Chong Yidong <cyd@stupidchicken.com>
parents:
105377
diff
changeset
|
173 public: |
104494 | 174 void public_a(); |
175 }; | |
176 | |
177 void A::public_a() { | |
178 A other_a; | |
179 | |
180 other_a.p// -7- | |
181 // #7# ( "private_a" "public_a" ) | |
182 ; | |
183 } | |
184 | |
185 int some_regular_function(){ | |
186 A a; | |
187 a.p// -8- | |
188 // #8# ( "public_a" ) | |
189 ; | |
190 return 0; | |
191 } | |
192 | |
193 } | |
194 | |
195 | |
196 /** Test Scope w/in a function (non-method) with classes using | |
197 * different levels of inheritance. | |
198 */ | |
199 int otherFunction() | |
200 { | |
201 sneaky::antelope Antelope(1); | |
202 sneaky::jackalope Jackalope(1); | |
203 sneaky::bugalope Bugalope(1); | |
204 | |
205 Antelope.// -9- | |
206 // #9# ( "fAntyPublic" "fQuadPublic" "testAccess") | |
207 ; | |
208 | |
209 Jackalope.// -10- | |
210 // #10# ( "fBunnyPublic" "testAccess") | |
211 ; | |
212 | |
213 Jackalope// @1@ 6 | |
214 ; | |
215 Jackalope; | |
216 Jackalope; | |
217 Jackalope; | |
218 | |
219 Bugalope.// -11- | |
220 // #11# ( "fBugPublic" "testAccess") | |
221 ; | |
222 Bugalope// @2@ 3 | |
223 ; | |
224 } | |
225 | |
226 /** Test methods within each class for types of access to the baseclass. | |
227 */ | |
228 | |
229 bool sneaky::antelope::testAccess() //^7^ | |
230 { | |
231 this.// -12- | |
232 // #12# ( "fAntyPrivate" "fAntyProtected" "fAntyPublic" "fQuadProtected" "fQuadPublic" "testAccess" ) | |
233 ; | |
234 } | |
235 | |
236 bool sneaky::jackalope::testAccess() //^8^ | |
237 { | |
238 this.// -13- | |
239 // #13# ( "fBunnyPrivate" "fBunnyProtected" "fBunnyPublic" "fQuadProtected" "fQuadPublic" "testAccess" ) | |
240 ; | |
241 } | |
242 | |
243 bool sneaky::bugalope::testAccess() //^9^ | |
244 { | |
245 this.// -14- | |
246 // #14# ( "fBugPrivate" "fBugProtected" "fBugPublic" "fQuadPublic" "testAccess" ) | |
247 ; | |
248 } | |
249 |