File: Object.pmod

package info (click to toggle)
pike8.0 8.0.1956-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 60,580 kB
  • sloc: ansic: 259,734; xml: 36,320; makefile: 3,748; sh: 1,713; cpp: 1,349; awk: 1,036; lisp: 655; javascript: 468; asm: 242; objc: 240; pascal: 157; sed: 34
file content (15 lines) | stat: -rw-r--r-- 470 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

#pike __REAL_VERSION__
#pragma strict_types

constant DESTRUCT_EXPLICIT = __builtin.DESTRUCT_EXPLICIT;
constant DESTRUCT_NO_REFS = __builtin.DESTRUCT_NO_REFS;
constant DESTRUCT_GC = __builtin.DESTRUCT_GC;
constant DESTRUCT_CLEANUP = __builtin.DESTRUCT_CLEANUP;
//! Flags passed to @[lfun::destroy].
//!
//! @note
//! @[Object.DESTRUCT_EXPLICIT] is @expr{0@} and
//! @[Object.DESTRUCT_CLEANUP] is @expr{1@} for compatibility.

constant secure = __builtin.object_secure;