FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
mercury/java/runtime/Sectag_Locn.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
/
Sectag_Locn.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
24 lines (19 loc) · 744 Bytes
Breadcrumbs
mercury
/
java
/
runtime
/
Sectag_Locn.java
Copy path
File metadata and controls
24 lines (19 loc) · 744 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
24
// vim: ts=4 sw=4 expandtab ft=java
//
// Copyright (C) 2001-2002 The University of Melbourne.
// Copyright (C) 2018 The Mercury team.
// This file is distributed under the terms specified in COPYING.LIB.
//
package
jmercury
.
runtime
;
public
class
Sectag_Locn
implements
java
.
io
.
Serializable
{
public
static
final
int
MR_SECTAG_NONE
=
0
;
public
static
final
int
MR_SECTAG_NONE_DIRECT_ARG
=
1
;
public
static
final
int
MR_SECTAG_LOCAL
=
2
;
public
static
final
int
MR_SECTAG_LOCAL_REST_OF_WORD
=
2
;
// synonym
public
static
final
int
MR_SECTAG_REMOTE
=
3
;
public
static
final
int
MR_SECTAG_REMOTE_FULL_WORD
=
3
;
// synonym
public
int
value
;
public
Sectag_Locn
(
int
arg
) {
this
.
value
=
arg
;
}
}
Back
|
FazBrowse Home
|
New Git URL