Skip to content
Snippets Groups Projects
Select Git revision
  • a3ce270c3cf79a6159e323910c20c34c127520f4
  • master default protected
  • 9.0
  • 8.0
  • 7.8
  • 7.6
  • 7.4
  • 7.2
  • 7.0
  • 0.6
  • rosuav/latex-markdown-renderer
  • rxnpatch/rxnpatch
  • marcus/gobject-introspection
  • rxnpatch/8.0
  • rosuav/pre-listening-ports
  • nt-tools
  • rosuav/async-annotations
  • rosuav/pgsql-ssl
  • rxnpatch/rxnpatch-broken/2023-10-06T094250
  • grubba/fdlib
  • grubba/wip/sakura/8.0
  • v8.0.2000
  • v8.0.1998
  • v8.0.1996
  • v8.0.1994
  • v8.0.1992
  • v8.0.1990
  • v8.0.1988
  • v8.0.1986
  • rxnpatch/clusters/8.0/2025-04-29T124414
  • rxnpatch/2025-04-29T124414
  • v8.0.1984
  • v8.0.1982
  • v8.0.1980
  • v8.0.1978
  • v8.0.1976
  • v8.0.1974
  • v8.0.1972
  • v8.0.1970
  • v8.0.1968
  • v8.0.1966
41 results

mapping.c

Blame
    • Fredrik Hübinette (Hubbe)'s avatar
      2a5096e4
      foo · 2a5096e4
      Fredrik Hübinette (Hubbe) authored
      Rev: bin/create_testsuite:1.2
      Rev: doc/types/mapping:1.2
      Rev: lib/simulate.lpc:1.3
      Rev: lib/testsuite.lpc:1.2
      Rev: src/array.c:1.3
      Rev: src/call_out.c:1.3
      Rev: src/configure.in:1.6
      Rev: src/debug.c:1.2
      Rev: src/debug.h:1.2
      Rev: src/docode.c:1.3
      Rev: src/dynamic_buffer.c:1.2
      Rev: src/interpret.c:1.3
      Rev: src/las.c:1.2
      Rev: src/lpc_types.c:1.2
      Rev: src/macros.h:1.3
      Rev: src/main.c:1.5
      Rev: src/mapping.c:1.3
      Rev: src/modules/regexp/regexp.c:1.3
      Rev: src/object.c:1.2
      Rev: src/opcodes.c:1.5
      Rev: src/port.c:1.7
      Rev: src/types.h:1.5
      2a5096e4
      History
      foo
      Fredrik Hübinette (Hubbe) authored
      Rev: bin/create_testsuite:1.2
      Rev: doc/types/mapping:1.2
      Rev: lib/simulate.lpc:1.3
      Rev: lib/testsuite.lpc:1.2
      Rev: src/array.c:1.3
      Rev: src/call_out.c:1.3
      Rev: src/configure.in:1.6
      Rev: src/debug.c:1.2
      Rev: src/debug.h:1.2
      Rev: src/docode.c:1.3
      Rev: src/dynamic_buffer.c:1.2
      Rev: src/interpret.c:1.3
      Rev: src/las.c:1.2
      Rev: src/lpc_types.c:1.2
      Rev: src/macros.h:1.3
      Rev: src/main.c:1.5
      Rev: src/mapping.c:1.3
      Rev: src/modules/regexp/regexp.c:1.3
      Rev: src/object.c:1.2
      Rev: src/opcodes.c:1.5
      Rev: src/port.c:1.7
      Rev: src/types.h:1.5
    object 812 B
    NAME
    	object - an instance of a class (program)
    
    DESCRIPTION
    	There is no syntax example in this file because there is no way to
    	write constant object. The only way to make new objects is to use
    	clone() on a program.
    
    	Here follows a list of operators that applies to objects:
    	In this list, o and o2 are used to represent object expressions,
    	and s is a string expression:
    
    	o[s]	indexing, returns the identifier named s in the object o,
    		an identifier is a global variable or a function.
    	o[s]=c	This sets the global variable s int the object o to c,
    		if s is a function however, an error is produced.
    	o->foo	same as o["foo"]
    	o == o2	return 1 if o and o2 are the same object
    	o != o2	return 0 if o and o2 are the same object
    
    KEYWORDS
    	types
    
    SEE ALSO
    	program, function, builtin/clone, builtin/destruct