annotate Lib/IMPL/Object/Abstract.pm @ 364:82b6c967bcf1

sync, working on metadata
author cin
date Fri, 29 Nov 2013 16:33:07 +0400
parents 97628101b765
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
49
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
1 package IMPL::Object::Abstract;
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
2 use strict;
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
3 use warnings;
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
4
166
4267a2ac3d46 Added Class::Template,
wizard
parents: 164
diff changeset
5 use parent qw(IMPL::Class::Meta);
364
82b6c967bcf1 sync, working on metadata
cin
parents: 339
diff changeset
6 use Carp qw(croak);
49
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
7
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
8 our $MemoryLeakProtection;
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
9 my $Cleanup = 0;
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
10
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
11 my %cacheCTOR;
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
12
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
13 my $t = 0;
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
14 sub cache_ctor {
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
15 my $class = shift;
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
16
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
17 no strict 'refs';
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
18 my @sequence;
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
19
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
20 my $refCTORS = *{"${class}::CTOR"}{HASH};
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
21
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
22 foreach my $super ( @{"${class}::ISA"} ) {
194
4d0e1962161c Replaced tabs with spaces
cin
parents: 180
diff changeset
23 my $superSequence = $cacheCTOR{$super} || cache_ctor($super);
4d0e1962161c Replaced tabs with spaces
cin
parents: 180
diff changeset
24
4d0e1962161c Replaced tabs with spaces
cin
parents: 180
diff changeset
25 my $mapper = $refCTORS ? $refCTORS->{$super} : undef;
4d0e1962161c Replaced tabs with spaces
cin
parents: 180
diff changeset
26 if (ref $mapper eq 'CODE') {
4d0e1962161c Replaced tabs with spaces
cin
parents: 180
diff changeset
27 if ($mapper == *_pass_through_mapper{CODE}) {
4d0e1962161c Replaced tabs with spaces
cin
parents: 180
diff changeset
28 push @sequence,@$superSequence;
4d0e1962161c Replaced tabs with spaces
cin
parents: 180
diff changeset
29 } else {
4d0e1962161c Replaced tabs with spaces
cin
parents: 180
diff changeset
30 push @sequence, sub {
4d0e1962161c Replaced tabs with spaces
cin
parents: 180
diff changeset
31 my $this = shift;
4d0e1962161c Replaced tabs with spaces
cin
parents: 180
diff changeset
32 $this->$_($mapper->(@_)) foreach @$superSequence;
4d0e1962161c Replaced tabs with spaces
cin
parents: 180
diff changeset
33 } if @$superSequence;
4d0e1962161c Replaced tabs with spaces
cin
parents: 180
diff changeset
34 }
197
6b1dda998839 Added IMPL::declare, IMPL::require, to simplify module definitions
sergey
parents: 194
diff changeset
35 } elsif ($mapper and not ref $mapper and $mapper eq '@_') {
6b1dda998839 Added IMPL::declare, IMPL::require, to simplify module definitions
sergey
parents: 194
diff changeset
36 push @sequence,@$superSequence;
194
4d0e1962161c Replaced tabs with spaces
cin
parents: 180
diff changeset
37 } else {
4d0e1962161c Replaced tabs with spaces
cin
parents: 180
diff changeset
38 warn "Unsupported mapper type, in '$class' for the super class '$super'" if $mapper;
4d0e1962161c Replaced tabs with spaces
cin
parents: 180
diff changeset
39 push @sequence, sub {
4d0e1962161c Replaced tabs with spaces
cin
parents: 180
diff changeset
40 my $this = shift;
4d0e1962161c Replaced tabs with spaces
cin
parents: 180
diff changeset
41 $this->$_() foreach @$superSequence;
4d0e1962161c Replaced tabs with spaces
cin
parents: 180
diff changeset
42 } if @$superSequence;
4d0e1962161c Replaced tabs with spaces
cin
parents: 180
diff changeset
43 }
49
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
44 }
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
45
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
46 push @sequence, *{"${class}::CTOR"}{CODE} if *{"${class}::CTOR"}{CODE};
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
47
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
48 $cacheCTOR{$class} = \@sequence;
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
49 return \@sequence;
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
50 }
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
51
90
dc1da0389db7 Small improvements in the abstract object class
wizard
parents: 63
diff changeset
52 sub dump_ctor {
194
4d0e1962161c Replaced tabs with spaces
cin
parents: 180
diff changeset
53 my ($self) = @_;
4d0e1962161c Replaced tabs with spaces
cin
parents: 180
diff changeset
54 $self = ref $self || $self;
4d0e1962161c Replaced tabs with spaces
cin
parents: 180
diff changeset
55
4d0e1962161c Replaced tabs with spaces
cin
parents: 180
diff changeset
56 warn "dumping $self .ctor";
4d0e1962161c Replaced tabs with spaces
cin
parents: 180
diff changeset
57 warn "$_" foreach @{$cacheCTOR{$self}||[]};
90
dc1da0389db7 Small improvements in the abstract object class
wizard
parents: 63
diff changeset
58 }
dc1da0389db7 Small improvements in the abstract object class
wizard
parents: 63
diff changeset
59
49
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
60 sub callCTOR {
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
61 my $self = shift;
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
62 my $class = ref $self;
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
63
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
64 $self->$_(@_) foreach @{$cacheCTOR{$class} || cache_ctor($class)};
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
65 }
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
66
273
ad93c9f4dd93 +Added support for destructors, (special method named DTOR)
sergey
parents: 197
diff changeset
67 sub _init_dtor {
ad93c9f4dd93 +Added support for destructors, (special method named DTOR)
sergey
parents: 197
diff changeset
68 my ($class) = @_;
ad93c9f4dd93 +Added support for destructors, (special method named DTOR)
sergey
parents: 197
diff changeset
69
ad93c9f4dd93 +Added support for destructors, (special method named DTOR)
sergey
parents: 197
diff changeset
70 no strict 'refs';
ad93c9f4dd93 +Added support for destructors, (special method named DTOR)
sergey
parents: 197
diff changeset
71
ad93c9f4dd93 +Added support for destructors, (special method named DTOR)
sergey
parents: 197
diff changeset
72 # avoid warnings for classes without destructors
ad93c9f4dd93 +Added support for destructors, (special method named DTOR)
sergey
parents: 197
diff changeset
73 no warnings 'once';
ad93c9f4dd93 +Added support for destructors, (special method named DTOR)
sergey
parents: 197
diff changeset
74
ad93c9f4dd93 +Added support for destructors, (special method named DTOR)
sergey
parents: 197
diff changeset
75 my @dtors;
ad93c9f4dd93 +Added support for destructors, (special method named DTOR)
sergey
parents: 197
diff changeset
76
ad93c9f4dd93 +Added support for destructors, (special method named DTOR)
sergey
parents: 197
diff changeset
77 my @hierarchy = ($class);
ad93c9f4dd93 +Added support for destructors, (special method named DTOR)
sergey
parents: 197
diff changeset
78 my %visited;
ad93c9f4dd93 +Added support for destructors, (special method named DTOR)
sergey
parents: 197
diff changeset
79
ad93c9f4dd93 +Added support for destructors, (special method named DTOR)
sergey
parents: 197
diff changeset
80 while(my $subclass = shift @hierarchy) {
ad93c9f4dd93 +Added support for destructors, (special method named DTOR)
sergey
parents: 197
diff changeset
81 if(*{"${subclass}::DTOR"}{CODE}) {
ad93c9f4dd93 +Added support for destructors, (special method named DTOR)
sergey
parents: 197
diff changeset
82 push @dtors, *{"${subclass}::DTOR"}{CODE};
ad93c9f4dd93 +Added support for destructors, (special method named DTOR)
sergey
parents: 197
diff changeset
83 }
ad93c9f4dd93 +Added support for destructors, (special method named DTOR)
sergey
parents: 197
diff changeset
84
ad93c9f4dd93 +Added support for destructors, (special method named DTOR)
sergey
parents: 197
diff changeset
85 push @hierarchy, @{"${subclass}::ISA"};
ad93c9f4dd93 +Added support for destructors, (special method named DTOR)
sergey
parents: 197
diff changeset
86 }
ad93c9f4dd93 +Added support for destructors, (special method named DTOR)
sergey
parents: 197
diff changeset
87
ad93c9f4dd93 +Added support for destructors, (special method named DTOR)
sergey
parents: 197
diff changeset
88 if (@dtors) {
ad93c9f4dd93 +Added support for destructors, (special method named DTOR)
sergey
parents: 197
diff changeset
89
ad93c9f4dd93 +Added support for destructors, (special method named DTOR)
sergey
parents: 197
diff changeset
90 return *{"${class}::callDTOR"} = sub {
ad93c9f4dd93 +Added support for destructors, (special method named DTOR)
sergey
parents: 197
diff changeset
91 my ($self) = @_;
ad93c9f4dd93 +Added support for destructors, (special method named DTOR)
sergey
parents: 197
diff changeset
92 my $selfClass = ref $self;
ad93c9f4dd93 +Added support for destructors, (special method named DTOR)
sergey
parents: 197
diff changeset
93 if ($selfClass ne $class) {
ad93c9f4dd93 +Added support for destructors, (special method named DTOR)
sergey
parents: 197
diff changeset
94 goto &{$selfClass->_init_dtor()};
ad93c9f4dd93 +Added support for destructors, (special method named DTOR)
sergey
parents: 197
diff changeset
95 } else {
ad93c9f4dd93 +Added support for destructors, (special method named DTOR)
sergey
parents: 197
diff changeset
96 map $_->($self), @dtors;
ad93c9f4dd93 +Added support for destructors, (special method named DTOR)
sergey
parents: 197
diff changeset
97 }
ad93c9f4dd93 +Added support for destructors, (special method named DTOR)
sergey
parents: 197
diff changeset
98 }
ad93c9f4dd93 +Added support for destructors, (special method named DTOR)
sergey
parents: 197
diff changeset
99
ad93c9f4dd93 +Added support for destructors, (special method named DTOR)
sergey
parents: 197
diff changeset
100 } else {
ad93c9f4dd93 +Added support for destructors, (special method named DTOR)
sergey
parents: 197
diff changeset
101 return *{"${class}::callDTOR"} = sub {
ad93c9f4dd93 +Added support for destructors, (special method named DTOR)
sergey
parents: 197
diff changeset
102 my $self = ref $_[0];
ad93c9f4dd93 +Added support for destructors, (special method named DTOR)
sergey
parents: 197
diff changeset
103
ad93c9f4dd93 +Added support for destructors, (special method named DTOR)
sergey
parents: 197
diff changeset
104 goto &{$self->_init_dtor()} unless $self eq $class;
ad93c9f4dd93 +Added support for destructors, (special method named DTOR)
sergey
parents: 197
diff changeset
105 }
ad93c9f4dd93 +Added support for destructors, (special method named DTOR)
sergey
parents: 197
diff changeset
106 }
ad93c9f4dd93 +Added support for destructors, (special method named DTOR)
sergey
parents: 197
diff changeset
107 }
ad93c9f4dd93 +Added support for destructors, (special method named DTOR)
sergey
parents: 197
diff changeset
108
ad93c9f4dd93 +Added support for destructors, (special method named DTOR)
sergey
parents: 197
diff changeset
109 __PACKAGE__->_init_dtor();
ad93c9f4dd93 +Added support for destructors, (special method named DTOR)
sergey
parents: 197
diff changeset
110
49
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
111 sub toString {
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
112 my $self = shift;
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
113
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
114 return (ref $self || $self);
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
115 }
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
116
280
c6d0f889ef87 +IMPL::declare now supports meta attributes
cin
parents: 276
diff changeset
117 sub _typeof {
194
4d0e1962161c Replaced tabs with spaces
cin
parents: 180
diff changeset
118 ref $_[0] || $_[0];
93
0667064553ef fixed _is_class in activator
wizard
parents: 90
diff changeset
119 }
0667064553ef fixed _is_class in activator
wizard
parents: 90
diff changeset
120
49
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
121 sub isDisposed {
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
122 0;
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
123 }
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
124
273
ad93c9f4dd93 +Added support for destructors, (special method named DTOR)
sergey
parents: 197
diff changeset
125 sub DESTROY {
ad93c9f4dd93 +Added support for destructors, (special method named DTOR)
sergey
parents: 197
diff changeset
126 shift->callDTOR();
ad93c9f4dd93 +Added support for destructors, (special method named DTOR)
sergey
parents: 197
diff changeset
127 }
49
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
128
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
129 sub END {
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
130 $Cleanup = 1;
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
131 }
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
132
174
d920d2b70230 minor changes
sergey
parents: 166
diff changeset
133 sub _pass_through_mapper {
49
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
134 @_;
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
135 }
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
136
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
137 sub PassArgs {
174
d920d2b70230 minor changes
sergey
parents: 166
diff changeset
138 \&_pass_through_mapper;
49
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
139 }
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
140
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
141 sub PassThroughArgs {
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
142 my $class = shift;
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
143 $class = ref $class || $class;
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
144 no strict 'refs';
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
145 no warnings 'once';
174
d920d2b70230 minor changes
sergey
parents: 166
diff changeset
146 ${"${class}::CTOR"}{$_} = \&_pass_through_mapper foreach @{"${class}::ISA"};
49
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
147 }
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
148
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
149 package self;
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
150
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
151 our $AUTOLOAD;
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
152 sub AUTOLOAD {
339
97628101b765 refactoring: application now holds a security object factory rather than a security object
cin
parents: 280
diff changeset
153 goto &{caller(). substr $AUTOLOAD,4};
49
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
154 }
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
155
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
156 package supercall;
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
157
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
158 our $AUTOLOAD;
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
159 sub AUTOLOAD {
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
160 my $sub;
339
97628101b765 refactoring: application now holds a security object factory rather than a security object
cin
parents: 280
diff changeset
161 my $methodName = substr $AUTOLOAD,9;
49
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
162 no strict 'refs';
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
163 $sub = $_->can($methodName) and $sub->(@_) foreach @{caller().'::ISA'};
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
164 }
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
165
63
76b878ad6596 Added serialization support for the IMPL::Object::List
wizard
parents: 49
diff changeset
166 1;
76b878ad6596 Added serialization support for the IMPL::Object::List
wizard
parents: 49
diff changeset
167
76b878ad6596 Added serialization support for the IMPL::Object::List
wizard
parents: 49
diff changeset
168 __END__
76b878ad6596 Added serialization support for the IMPL::Object::List
wizard
parents: 49
diff changeset
169
49
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
170 =pod
63
76b878ad6596 Added serialization support for the IMPL::Object::List
wizard
parents: 49
diff changeset
171 =head1 SYNOPSIS
49
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
172
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
173 package MyBaseObject;
166
4267a2ac3d46 Added Class::Template,
wizard
parents: 164
diff changeset
174 use parent qw(IMPL::Object::Abstract);
49
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
175
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
176 sub new {
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
177 # own implementation of the new opeator
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
178 }
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
179
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
180 sub surrogate {
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
181 # own implementation of the surrogate operator
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
182 }
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
183
63
76b878ad6596 Added serialization support for the IMPL::Object::List
wizard
parents: 49
diff changeset
184 =head1 DESCRIPTION
49
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
185
180
d1676be8afcc Перекодировка в utf-8
sourcer
parents: 174
diff changeset
186 Реализация механизма вызова конструкторов и других вспомогательных вещей, кроме операторов
d1676be8afcc Перекодировка в utf-8
sourcer
parents: 174
diff changeset
187 создания экземпляров.
276
8a5da17d7ef9 *IMPL::Class refactoring property definition mechanism (incomplete).
sergey
parents: 273
diff changeset
188
49
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 33
diff changeset
189 =cut