Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
214a36e8
Commit
214a36e8
authored
Sep 22, 1993
by
Kresten Krab Thorup
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(-compare:, -shouldNotImplement:): Added.
From-SVN: r5399
parent
d4b13012
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
0 deletions
+20
-0
gcc/objc/Object.h
+2
-0
gcc/objc/Object.m
+18
-0
No files found.
gcc/objc/Object.h
View file @
214a36e8
...
...
@@ -61,6 +61,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
-
-
self
;
-
(
unsigned
int
)
hash
;
-
(
BOOL
)
isEqual
:
anObject
;
-
(
int
)
compare
:
anotherObject
;
/* Testing object type */
-
(
BOOL
)
isMetaClass
;
...
...
@@ -102,6 +103,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
/* Enforcing intentions */
-
-
subclassResponsibility
:(
SEL
)
aSel
;
-
-
notImplemented
:(
SEL
)
aSel
;
-
-
shouldNotImplement
:(
SEL
)
aSel
;
/* Error handling */
-
-
doesNotRecognize
:(
SEL
)
aSel
;
...
...
gcc/objc/Object.m
View file @
214a36e8
...
...
@@ -116,6 +116,18 @@ extern int errno;
return
self
==
anObject
;
}
-
(
int
)
compare
:
anotherObject
;
{
if
([
self
isEqual
:
anotherObject
])
return
0
;
// Ordering objects by their address is pretty useless,
// so subclasses should override this is some useful way.
else
if
(
self
>
anotherObject
)
return
1
;
else
return
-
1
;
}
-
(
BOOL
)
isMetaClass
{
return
NO
;
...
...
@@ -287,6 +299,12 @@ extern int errno;
return
[
self
error
:
"method %s not implemented"
,
sel_get_name
(
aSel
)];
}
-
shouldNotImplement
:
(
SEL
)
aSel
{
return
[
self
error
:
"%s should not implement %s"
,
object_get_class_name
(
self
),
sel_get_name
(
aSel
)];
}
-
doesNotRecognize
:
(
SEL
)
aSel
{
return
[
self
error
:
"%s does not recognize %s"
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment