FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
mercury/java/runtime/TypeClassMethod.java at master · Mercury-Language/mercury · GitHub
Mercury-Language
/
mercury
Public
Notifications
You must be signed in to change notification settings
Fork
71
Star
1.1k
Code
Issues
13
Pull requests
8
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
mercury
/
java
/
runtime
/
TypeClassMethod.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
23 lines (19 loc) · 766 Bytes
Breadcrumbs
mercury
/
java
/
runtime
/
TypeClassMethod.java
Copy path
File metadata and controls
23 lines (19 loc) · 766 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// vim: ts=4 sw=4 expandtab ft=java
//
// Copyright (C) 2004 The University of Melbourne.
// Copyright (C) 2018 The Mercury team.
// This file is distributed under the terms specified in COPYING.LIB.
//
package
jmercury
.
runtime
;
// This corresponds to the C type MR_TypeClassMethod
// in runtime/mercury_typeclass_info.h.
public
class
TypeClassMethod
implements
java
.
io
.
Serializable
{
public
/* final */
java
.
lang
.
String
tc_method_name
;
public
/* final */
int
tc_method_arity
;
public
/* final */
int
/* PredFunc */
tc_method_pred_func
;
public
TypeClassMethod
(
java
.
lang
.
String
name
,
int
arity
,
int
pred_func
) {
tc_method_name
=
name
;
tc_method_arity
=
arity
;
tc_method_pred_func
=
pred_func
;
}
}
Back
|
FazBrowse Home
|
New Git URL