modelize: implements services of APropdef as noop (instead of abstract)
[nit.git] / src / modelize / modelize_property.nit
1 # This file is part of NIT ( http://www.nitlanguage.org ).
2 #
3 # Copyright 2012 Jean Privat <jean@pryen.org>
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 # http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16
17 # Analysis and verification of property definitions to instantiate model element
18 module modelize_property
19
20 intrude import modelize_class
21 private import annotation
22
23 redef class ToolContext
24 # Run `AClassdef::build_property` on the classdefs of each module
25 var modelize_property_phase: Phase = new ModelizePropertyPhase(self, [modelize_class_phase])
26 end
27
28 private class ModelizePropertyPhase
29 super Phase
30 redef fun process_nmodule(nmodule)
31 do
32 for nclassdef in nmodule.n_classdefs do
33 if nclassdef.all_defs == null then continue # skip non principal classdef
34 toolcontext.modelbuilder.build_properties(nclassdef)
35 end
36 end
37 end
38
39 redef class ModelBuilder
40 # Registration of the npropdef associated to each mpropdef.
41 #
42 # Public clients need to use `mpropdef2node` to access stuff.
43 private var mpropdef2npropdef = new HashMap[MPropDef, APropdef]
44
45 # Retrieve the associated AST node of a mpropertydef.
46 # This method is used to associate model entity with syntactic entities.
47 #
48 # If the property definition is not associated with a node, returns `null`.
49 fun mpropdef2node(mpropdef: MPropDef): nullable ANode
50 do
51 var res
52 res = mpropdef2npropdef.get_or_null(mpropdef)
53 if res != null then
54 # Run the phases on it
55 toolcontext.run_phases_on_npropdef(res)
56 return res
57 end
58 if mpropdef isa MMethodDef and mpropdef.mproperty.is_root_init then
59 res = mclassdef2nclassdef.get_or_null(mpropdef.mclassdef)
60 if res != null then return res
61 end
62 return null
63 end
64
65 # Retrieve all the attributes nodes localy definied
66 # FIXME think more about this method and how the separations separate/global and ast/model should be done.
67 fun collect_attr_propdef(mclassdef: MClassDef): Array[AAttrPropdef]
68 do
69 var res = new Array[AAttrPropdef]
70 var n = mclassdef2nclassdef.get_or_null(mclassdef)
71 if n == null then return res
72 for npropdef in n.n_propdefs do
73 if npropdef isa AAttrPropdef then
74 # Run the phases on it
75 toolcontext.run_phases_on_npropdef(npropdef)
76 res.add(npropdef)
77 end
78 end
79 return res
80 end
81
82 # Build the properties of `nclassdef`.
83 # REQUIRE: all superclasses are built.
84 private fun build_properties(nclassdef: AClassdef)
85 do
86 # Force building recursively
87 if nclassdef.build_properties_is_done then return
88 nclassdef.build_properties_is_done = true
89 var mclassdef = nclassdef.mclassdef.as(not null)
90 if mclassdef.in_hierarchy == null then return # Skip error
91 for superclassdef in mclassdef.in_hierarchy.direct_greaters do
92 if not mclassdef2nclassdef.has_key(superclassdef) then continue
93 build_properties(mclassdef2nclassdef[superclassdef])
94 end
95
96 mclassdef.build_self_type(self, nclassdef)
97 for nclassdef2 in nclassdef.all_defs do
98 for npropdef in nclassdef2.n_propdefs do
99 npropdef.build_property(self, mclassdef)
100 end
101 for npropdef in nclassdef2.n_propdefs do
102 npropdef.build_signature(self)
103 end
104 for npropdef in nclassdef2.n_propdefs do
105 npropdef.check_signature(self)
106 end
107 end
108 process_default_constructors(nclassdef)
109 end
110
111 # the root init of the Object class
112 # Is usually implicitly defined
113 # Then explicit or implicit definitions of root-init are attached to it
114 var the_root_init_mmethod: nullable MMethod
115
116 # Introduce or inherit default constructor
117 # This is the last part of `build_properties`.
118 private fun process_default_constructors(nclassdef: AClassdef)
119 do
120 var mclassdef = nclassdef.mclassdef.as(not null)
121
122 # Are we a refinement
123 if not mclassdef.is_intro then return
124
125 # Look for the init in Object, or create it
126 if mclassdef.mclass.name == "Object" and the_root_init_mmethod == null then
127 # Create the implicit root-init method
128 var mprop = new MMethod(mclassdef, "init", mclassdef.mclass.visibility)
129 mprop.is_root_init = true
130 var mpropdef = new MMethodDef(mclassdef, mprop, nclassdef.location)
131 var mparameters = new Array[MParameter]
132 var msignature = new MSignature(mparameters, null)
133 mpropdef.msignature = msignature
134 mpropdef.new_msignature = msignature
135 mprop.is_init = true
136 nclassdef.mfree_init = mpropdef
137 self.toolcontext.info("{mclassdef} gets a free empty constructor {mpropdef}{msignature}", 3)
138 the_root_init_mmethod = mprop
139 return
140 end
141
142 # Is the class forbid constructors?
143 if not mclassdef.mclass.kind.need_init then return
144
145 # Is there already a constructor defined?
146 var defined_init: nullable MMethodDef = null
147 for mpropdef in mclassdef.mpropdefs do
148 if not mpropdef isa MMethodDef then continue
149 if not mpropdef.mproperty.is_init then continue
150 if mpropdef.mproperty.is_root_init then
151 assert defined_init == null
152 defined_init = mpropdef
153 else if mpropdef.mproperty.name == "init" then
154 # An explicit old-style init named "init", so return
155 return
156 end
157 end
158
159 if not nclassdef isa AStdClassdef then return
160
161 # Collect undefined attributes
162 var mparameters = new Array[MParameter]
163 var initializers = new Array[MProperty]
164 for npropdef in nclassdef.n_propdefs do
165 if npropdef isa AMethPropdef then
166 if npropdef.mpropdef == null then return # Skip broken attribute
167 var at = npropdef.get_single_annotation("autoinit", self)
168 if at == null then continue # Skip non tagged init
169
170 var sig = npropdef.mpropdef.msignature
171 if sig == null then continue # Skip broken method
172
173 if not npropdef.mpropdef.is_intro then
174 self.error(at, "Error: `autoinit` cannot be set on redefinitions")
175 continue
176 end
177
178 for param in sig.mparameters do
179 var ret_type = param.mtype
180 var mparameter = new MParameter(param.name, ret_type, false)
181 mparameters.add(mparameter)
182 end
183 initializers.add(npropdef.mpropdef.mproperty)
184 end
185 if npropdef isa AAttrPropdef then
186 if npropdef.mpropdef == null then return # Skip broken attribute
187 if npropdef.noinit then continue # Skip noinit attribute
188 var atautoinit = npropdef.get_single_annotation("autoinit", self)
189 if atautoinit != null then
190 # For autoinit attributes, call the reader to force
191 # the lazy initialization of the attribute.
192 initializers.add(npropdef.mreadpropdef.mproperty)
193 continue
194 end
195 if npropdef.has_value then continue
196 var paramname = npropdef.mpropdef.mproperty.name.substring_from(1)
197 var ret_type = npropdef.mpropdef.static_mtype
198 if ret_type == null then return
199 var mparameter = new MParameter(paramname, ret_type, false)
200 mparameters.add(mparameter)
201 var msetter = npropdef.mwritepropdef
202 if msetter == null then
203 # No setter, it is a old-style attribute, so just add it
204 initializers.add(npropdef.mpropdef.mproperty)
205 else
206 # Add the setter to the list
207 initializers.add(msetter.mproperty)
208 end
209 end
210 end
211
212 if the_root_init_mmethod == null then return
213
214 # Look for most-specific new-stype init definitions
215 var spropdefs = the_root_init_mmethod.lookup_super_definitions(mclassdef.mmodule, mclassdef.bound_mtype)
216 if spropdefs.is_empty then
217 toolcontext.error(nclassdef.location, "Error: {mclassdef} does not specialize {the_root_init_mmethod.intro_mclassdef}. Possible duplication of the root class `Object`?")
218 return
219 end
220
221 # Search the longest-one and checks for conflict
222 var longest = spropdefs.first
223 if spropdefs.length > 1 then
224 # Check for conflict in the order of initializers
225 # Each initializer list must me a prefix of the longest list
226 # part 1. find the longest list
227 for spd in spropdefs do
228 if spd.initializers.length > longest.initializers.length then longest = spd
229 end
230 # part 2. compare
231 for spd in spropdefs do
232 var i = 0
233 for p in spd.initializers do
234 if p != longest.initializers[i] then
235 self.error(nclassdef, "Error: conflict for inherited inits {spd}({spd.initializers.join(", ")}) and {longest}({longest.initializers.join(", ")})")
236 return
237 end
238 i += 1
239 end
240 end
241 end
242
243 # Can we just inherit?
244 if spropdefs.length == 1 and mparameters.is_empty and defined_init == null then
245 self.toolcontext.info("{mclassdef} inherits the basic constructor {longest}", 3)
246 mclassdef.mclass.root_init = longest
247 return
248 end
249
250 # Combine the inherited list to what is collected
251 if longest.initializers.length > 0 then
252 mparameters.prepend longest.new_msignature.mparameters
253 initializers.prepend longest.initializers
254 end
255
256 # If we already have a basic init definition, then setup its initializers
257 if defined_init != null then
258 defined_init.initializers.add_all(initializers)
259 var msignature = new MSignature(mparameters, null)
260 defined_init.new_msignature = msignature
261 self.toolcontext.info("{mclassdef} extends its basic constructor signature to {defined_init}{msignature}", 3)
262 mclassdef.mclass.root_init = defined_init
263 return
264 end
265
266 # Else create the local implicit basic init definition
267 var mprop = the_root_init_mmethod.as(not null)
268 var mpropdef = new MMethodDef(mclassdef, mprop, nclassdef.location)
269 mpropdef.has_supercall = true
270 mpropdef.initializers.add_all(initializers)
271 var msignature = new MSignature(mparameters, null)
272 mpropdef.new_msignature = msignature
273 mpropdef.msignature = new MSignature(new Array[MParameter], null) # always an empty real signature
274 nclassdef.mfree_init = mpropdef
275 self.toolcontext.info("{mclassdef} gets a free constructor for attributes {mpropdef}{msignature}", 3)
276 mclassdef.mclass.root_init = mpropdef
277 end
278
279 # Check the visibility of `mtype` as an element of the signature of `mpropdef`.
280 fun check_visibility(node: ANode, mtype: MType, mpropdef: MPropDef)
281 do
282 var mmodule = mpropdef.mclassdef.mmodule
283 var mproperty = mpropdef.mproperty
284
285 # Extract visibility information of the main part of `mtype`
286 # It is a case-by case
287 var vis_type: nullable MVisibility = null # The own visibility of the type
288 var mmodule_type: nullable MModule = null # The original module of the type
289 mtype = mtype.as_notnullable
290 if mtype isa MClassType then
291 vis_type = mtype.mclass.visibility
292 mmodule_type = mtype.mclass.intro.mmodule
293 else if mtype isa MVirtualType then
294 vis_type = mtype.mproperty.visibility
295 mmodule_type = mtype.mproperty.intro_mclassdef.mmodule
296 else if mtype isa MParameterType then
297 # nothing, always visible
298 else
299 node.debug "Unexpected type {mtype}"
300 abort
301 end
302
303 if vis_type != null then
304 assert mmodule_type != null
305 var vis_module_type = mmodule.visibility_for(mmodule_type) # the visibility of the original module
306 if mproperty.visibility > vis_type then
307 error(node, "Error: The {mproperty.visibility} property `{mproperty}` cannot contain the {vis_type} type `{mtype}`")
308 return
309 else if mproperty.visibility > vis_module_type then
310 error(node, "Error: The {mproperty.visibility} property `{mproperty}` cannot contain the type `{mtype}` from the {vis_module_type} module `{mmodule_type}`")
311 return
312 end
313 end
314
315 # No error, try to go deeper in generic types
316 if node isa AType then
317 for a in node.n_types do
318 var t = a.mtype
319 if t == null then continue # Error, thus skipped
320 check_visibility(a, t, mpropdef)
321 end
322 else if mtype isa MGenericType then
323 for t in mtype.arguments do check_visibility(node, t, mpropdef)
324 end
325 end
326 end
327
328 redef class MPropDef
329 # Does the MPropDef contains a call to super or a call of a super-constructor?
330 # Subsequent phases of the frontend (esp. typing) set it if required
331 var has_supercall: Bool = false is writable
332 end
333
334 redef class AClassdef
335 # Marker used in `ModelBuilder::build_properties`
336 private var build_properties_is_done = false
337
338 # The free init (implicitely constructed by the class if required)
339 var mfree_init: nullable MMethodDef = null
340 end
341
342 redef class MClass
343 # The base init of the class.
344 # Used to get the common new_msignature and initializers
345 #
346 # TODO: Where to put this information is not clear because unlike other
347 # informations, the initialisers are stable in a same class.
348 var root_init: nullable MMethodDef = null
349 end
350
351 redef class MClassDef
352 # What is the `APropdef` associated to a `MProperty`?
353 # Used to check multiple definition of a property.
354 var mprop2npropdef: Map[MProperty, APropdef] = new HashMap[MProperty, APropdef]
355
356 # Build the virtual type `SELF` only for introduction `MClassDef`
357 fun build_self_type(modelbuilder: ModelBuilder, nclassdef: AClassdef)
358 do
359 if not is_intro then return
360
361 var name = "SELF"
362 var mprop = modelbuilder.try_get_mproperty_by_name(nclassdef, self, name)
363
364 # If SELF type is declared nowherer?
365 if mprop == null then return
366
367 # SELF is not a virtual type? it is weird but we ignore it
368 if not mprop isa MVirtualTypeProp then return
369
370 # Is this the intro of SELF in the library?
371 var intro = mprop.intro
372 var intro_mclassdef = intro.mclassdef
373 if intro_mclassdef == self then
374 var nintro = modelbuilder.mpropdef2npropdef[intro]
375
376 # SELF must be declared in Object, otherwise this will create conflicts
377 if intro_mclassdef.mclass.name != "Object" then
378 modelbuilder.error(nintro, "Error: the virtual type SELF must be declared in Object.")
379 end
380
381 # SELF must be public
382 if mprop.visibility != public_visibility then
383 modelbuilder.error(nintro, "Error: the virtual type SELF must be public.")
384 end
385
386 # SELF must not be fixed
387 if intro.is_fixed then
388 modelbuilder.error(nintro, "Error: the virtual type SELF cannot be fixed.")
389 end
390
391 return
392 end
393
394 # This class introduction inherits a SELF
395 # We insert an artificial property to update it
396 var mpropdef = new MVirtualTypeDef(self, mprop, self.location)
397 mpropdef.bound = mclass.mclass_type
398 end
399 end
400
401 redef class APropdef
402 # The associated main model entity
403 type MPROPDEF: MPropDef
404
405 # The associated propdef once build by a `ModelBuilder`
406 var mpropdef: nullable MPROPDEF is writable
407
408 private fun build_property(modelbuilder: ModelBuilder, mclassdef: MClassDef) do end
409 private fun build_signature(modelbuilder: ModelBuilder) do end
410 private fun check_signature(modelbuilder: ModelBuilder) do end
411 private fun new_property_visibility(modelbuilder: ModelBuilder, mclassdef: MClassDef, nvisibility: nullable AVisibility): MVisibility
412 do
413 var mvisibility = public_visibility
414 if nvisibility != null then
415 mvisibility = nvisibility.mvisibility
416 if mvisibility == intrude_visibility then
417 modelbuilder.error(nvisibility, "Error: intrude is not a legal visibility for properties.")
418 mvisibility = public_visibility
419 end
420 end
421 if mclassdef.mclass.visibility == private_visibility then
422 if mvisibility == protected_visibility then
423 assert nvisibility != null
424 modelbuilder.error(nvisibility, "Error: The only legal visibility for properties in a private class is private.")
425 else if mvisibility == private_visibility then
426 assert nvisibility != null
427 modelbuilder.advice(nvisibility, "useless-visibility", "Warning: private is superfluous since the only legal visibility for properties in a private class is private.")
428 end
429 mvisibility = private_visibility
430 end
431 return mvisibility
432 end
433
434 private fun set_doc(mpropdef: MPropDef, modelbuilder: ModelBuilder)
435 do
436 var ndoc = self.n_doc
437 if ndoc != null then
438 var mdoc = ndoc.to_mdoc
439 mpropdef.mdoc = mdoc
440 mdoc.original_mentity = mpropdef
441 else if mpropdef.is_intro and mpropdef.mproperty.visibility >= protected_visibility then
442 modelbuilder.advice(self, "missing-doc", "Documentation warning: Undocumented property `{mpropdef.mproperty}`")
443 end
444
445 var at_deprecated = get_single_annotation("deprecated", modelbuilder)
446 if at_deprecated != null then
447 if not mpropdef.is_intro then
448 modelbuilder.error(self, "Error: method redefinition cannot be deprecated.")
449 else
450 var info = new MDeprecationInfo
451 ndoc = at_deprecated.n_doc
452 if ndoc != null then info.mdoc = ndoc.to_mdoc
453 mpropdef.mproperty.deprecation = info
454 end
455 end
456 end
457
458 private fun check_redef_property_visibility(modelbuilder: ModelBuilder, nvisibility: nullable AVisibility, mprop: MProperty)
459 do
460 if nvisibility == null then return
461 var mvisibility = nvisibility.mvisibility
462 if mvisibility != mprop.visibility and mvisibility != public_visibility then
463 modelbuilder.error(nvisibility, "Error: redefinition changed the visibility from a {mprop.visibility} to a {mvisibility}")
464 end
465 end
466
467 private fun check_redef_keyword(modelbuilder: ModelBuilder, mclassdef: MClassDef, kwredef: nullable Token, need_redef: Bool, mprop: MProperty): Bool
468 do
469 if mclassdef.mprop2npropdef.has_key(mprop) then
470 modelbuilder.error(self, "Error: A property {mprop} is already defined in class {mclassdef.mclass} at line {mclassdef.mprop2npropdef[mprop].location.line_start}.")
471 return false
472 end
473 if mprop isa MMethod and mprop.is_toplevel != (parent isa ATopClassdef) then
474 if mprop.is_toplevel then
475 modelbuilder.error(self, "Error: {mprop} is a top level method.")
476 else
477 modelbuilder.error(self, "Error: {mprop} is not a top level method.")
478 end
479 return false
480
481 end
482 if mprop isa MMethod and mprop.is_root_init then return true
483 if kwredef == null then
484 if need_redef then
485 modelbuilder.error(self, "Redef error: {mclassdef.mclass}::{mprop.name} is an inherited property. To redefine it, add the redef keyword.")
486 return false
487 end
488
489 # Check for full-name conflicts in the project.
490 # A public property should have a unique qualified name `project::class::prop`.
491 if mprop.intro_mclassdef.mmodule.mgroup != null and mprop.visibility >= protected_visibility then
492 var others = modelbuilder.model.get_mproperties_by_name(mprop.name)
493 if others != null then for other in others do
494 if other != mprop and other.intro_mclassdef.mmodule.mgroup != null and other.intro_mclassdef.mmodule.mgroup.mproject == mprop.intro_mclassdef.mmodule.mgroup.mproject and other.intro_mclassdef.mclass.name == mprop.intro_mclassdef.mclass.name and other.visibility >= protected_visibility then
495 modelbuilder.advice(self, "full-name-conflict", "Warning: A property named `{other.full_name}` is already defined in module `{other.intro_mclassdef.mmodule}` for the class `{other.intro_mclassdef.mclass.name}`.")
496 break
497 end
498 end
499 end
500 else
501 if not need_redef then
502 modelbuilder.error(self, "Error: No property {mclassdef.mclass}::{mprop.name} is inherited. Remove the redef keyword to define a new property.")
503 return false
504 end
505 end
506 return true
507 end
508
509 end
510
511 redef class ASignature
512 # Is the model builder has correctly visited the signature
513 var is_visited = false
514 # Names of parameters from the AST
515 # REQUIRE: is_visited
516 var param_names = new Array[String]
517 # Types of parameters from the AST
518 # REQUIRE: is_visited
519 var param_types = new Array[MType]
520 # Rank of the vararg (of -1 if none)
521 # REQUIRE: is_visited
522 var vararg_rank: Int = -1
523 # Return type
524 var ret_type: nullable MType = null
525
526 # Visit and fill information about a signature
527 private fun visit_signature(modelbuilder: ModelBuilder, mclassdef: MClassDef): Bool
528 do
529 var mmodule = mclassdef.mmodule
530 var param_names = self.param_names
531 var param_types = self.param_types
532 for np in self.n_params do
533 param_names.add(np.n_id.text)
534 var ntype = np.n_type
535 if ntype != null then
536 var mtype = modelbuilder.resolve_mtype(mmodule, mclassdef, ntype)
537 if mtype == null then return false # Skip error
538 for i in [0..param_names.length-param_types.length[ do
539 param_types.add(mtype)
540 end
541 if np.n_dotdotdot != null then
542 if self.vararg_rank != -1 then
543 modelbuilder.error(np, "Error: {param_names[self.vararg_rank]} is already a vararg")
544 return false
545 else
546 self.vararg_rank = param_names.length - 1
547 end
548 end
549 end
550 end
551 var ntype = self.n_type
552 if ntype != null then
553 self.ret_type = modelbuilder.resolve_mtype(mmodule, mclassdef, ntype)
554 if self.ret_type == null then return false # Skip error
555 end
556
557 self.is_visited = true
558 return true
559 end
560
561 # Build a visited signature
562 fun build_signature(modelbuilder: ModelBuilder): nullable MSignature
563 do
564 if param_names.length != param_types.length then
565 # Some parameters are typed, other parameters are not typed.
566 modelbuilder.error(self.n_params[param_types.length], "Error: Untyped parameter `{param_names[param_types.length]}'.")
567 return null
568 end
569
570 var mparameters = new Array[MParameter]
571 for i in [0..param_names.length[ do
572 var mparameter = new MParameter(param_names[i], param_types[i], i == vararg_rank)
573 self.n_params[i].mparameter = mparameter
574 mparameters.add(mparameter)
575 end
576
577 var msignature = new MSignature(mparameters, ret_type)
578 return msignature
579 end
580 end
581
582 redef class AParam
583 # The associated mparameter if any
584 var mparameter: nullable MParameter = null
585 end
586
587 redef class AMethPropdef
588 redef type MPROPDEF: MMethodDef
589
590
591 # Can self be used as a root init?
592 private fun look_like_a_root_init(modelbuilder: ModelBuilder, mclassdef: MClassDef): Bool
593 do
594 # Need the `init` keyword
595 if n_kwinit == null then return false
596 # Need to by anonymous
597 if self.n_methid != null then return false
598 # No annotation on itself
599 if get_single_annotation("old_style_init", modelbuilder) != null then return false
600 # Nor on its module
601 var amod = self.parent.parent.as(AModule)
602 var amoddecl = amod.n_moduledecl
603 if amoddecl != null then
604 var old = amoddecl.get_single_annotation("old_style_init", modelbuilder)
605 if old != null then return false
606 end
607 # No parameters
608 if self.n_signature.n_params.length > 0 then
609 modelbuilder.advice(self, "old-init", "Warning: init with signature in {mclassdef}")
610 return false
611 end
612 # Cannot be private or something
613 if not self.n_visibility isa APublicVisibility then
614 modelbuilder.advice(self, "old-init", "Warning: non-public init in {mclassdef}")
615 return false
616 end
617
618 return true
619 end
620
621 redef fun build_property(modelbuilder, mclassdef)
622 do
623 var n_kwinit = n_kwinit
624 var n_kwnew = n_kwnew
625 var is_init = n_kwinit != null or n_kwnew != null
626 var name: String
627 var amethodid = self.n_methid
628 var name_node: ANode
629 if amethodid == null then
630 if not is_init then
631 name = "main"
632 name_node = self
633 else if n_kwinit != null then
634 name = "init"
635 name_node = n_kwinit
636 else if n_kwnew != null then
637 name = "new"
638 name_node = n_kwnew
639 else
640 abort
641 end
642 else if amethodid isa AIdMethid then
643 name = amethodid.n_id.text
644 name_node = amethodid
645 else
646 # operator, bracket or assign
647 name = amethodid.collect_text
648 name_node = amethodid
649
650 if name == "-" and self.n_signature.n_params.length == 0 then
651 name = "unary -"
652 end
653 end
654
655 var look_like_a_root_init = look_like_a_root_init(modelbuilder, mclassdef)
656 var mprop: nullable MMethod = null
657 if not is_init or n_kwredef != null then mprop = modelbuilder.try_get_mproperty_by_name(name_node, mclassdef, name).as(nullable MMethod)
658 if mprop == null and look_like_a_root_init then
659 mprop = modelbuilder.the_root_init_mmethod
660 var nb = n_block
661 if nb isa ABlockExpr and nb.n_expr.is_empty and n_doc == null then
662 modelbuilder.advice(self, "useless-init", "Warning: useless empty init in {mclassdef}")
663 end
664 end
665 if mprop == null then
666 var mvisibility = new_property_visibility(modelbuilder, mclassdef, self.n_visibility)
667 mprop = new MMethod(mclassdef, name, mvisibility)
668 if look_like_a_root_init and modelbuilder.the_root_init_mmethod == null then
669 modelbuilder.the_root_init_mmethod = mprop
670 mprop.is_root_init = true
671 end
672 mprop.is_init = is_init
673 mprop.is_new = n_kwnew != null
674 if parent isa ATopClassdef then mprop.is_toplevel = true
675 self.check_redef_keyword(modelbuilder, mclassdef, n_kwredef, false, mprop)
676 else
677 if not self.check_redef_keyword(modelbuilder, mclassdef, n_kwredef, not self isa AMainMethPropdef, mprop) then return
678 check_redef_property_visibility(modelbuilder, self.n_visibility, mprop)
679 end
680
681 # Check name conflicts in the local class for constructors.
682 if is_init then
683 for p, n in mclassdef.mprop2npropdef do
684 if p != mprop and p isa MMethod and p.name == name then
685 check_redef_keyword(modelbuilder, mclassdef, n_kwredef, false, p)
686 break
687 end
688 end
689 end
690
691 mclassdef.mprop2npropdef[mprop] = self
692
693 var mpropdef = new MMethodDef(mclassdef, mprop, self.location)
694
695 set_doc(mpropdef, modelbuilder)
696
697 self.mpropdef = mpropdef
698 modelbuilder.mpropdef2npropdef[mpropdef] = self
699 if mpropdef.is_intro then
700 modelbuilder.toolcontext.info("{mpropdef} introduces new method {mprop.full_name}", 4)
701 else
702 modelbuilder.toolcontext.info("{mpropdef} redefines method {mprop.full_name}", 4)
703 end
704 end
705
706 redef fun build_signature(modelbuilder)
707 do
708 var mpropdef = self.mpropdef
709 if mpropdef == null then return # Error thus skiped
710 var mclassdef = mpropdef.mclassdef
711 var mmodule = mclassdef.mmodule
712 var nsig = self.n_signature
713
714 if mpropdef.mproperty.is_root_init and not mclassdef.is_intro then
715 var root_init = mclassdef.mclass.root_init
716 if root_init != null then
717 # Inherit the initializers by refinement
718 mpropdef.new_msignature = root_init.new_msignature
719 assert mpropdef.initializers.is_empty
720 mpropdef.initializers.add_all root_init.initializers
721 end
722 end
723
724 # Retrieve info from the signature AST
725 var param_names = new Array[String] # Names of parameters from the AST
726 var param_types = new Array[MType] # Types of parameters from the AST
727 var vararg_rank = -1
728 var ret_type: nullable MType = null # Return type from the AST
729 if nsig != null then
730 if not nsig.visit_signature(modelbuilder, mclassdef) then return
731 param_names = nsig.param_names
732 param_types = nsig.param_types
733 vararg_rank = nsig.vararg_rank
734 ret_type = nsig.ret_type
735 end
736
737 # Look for some signature to inherit
738 # FIXME: do not inherit from the intro, but from the most specific
739 var msignature: nullable MSignature = null
740 if not mpropdef.is_intro then
741 msignature = mpropdef.mproperty.intro.msignature
742 if msignature == null then return # Skip error
743
744 # The local signature is adapted to use the local formal types, if any.
745 msignature = msignature.resolve_for(mclassdef.mclass.mclass_type, mclassdef.bound_mtype, mmodule, false)
746
747 # Check inherited signature arity
748 if param_names.length != msignature.arity then
749 var node: ANode
750 if nsig != null then node = nsig else node = self
751 modelbuilder.error(node, "Redef error: {mpropdef} redefines {mpropdef.mproperty.intro} with {param_names.length} parameter(s), {msignature.arity} expected. Signature is {mpropdef}{msignature}")
752 return
753 end
754 else if mpropdef.mproperty.is_init and not mpropdef.mproperty.is_new then
755 # FIXME UGLY: inherit signature from a super-constructor
756 for msupertype in mclassdef.supertypes do
757 msupertype = msupertype.anchor_to(mmodule, mclassdef.bound_mtype)
758 var candidate = modelbuilder.try_get_mproperty_by_name2(self, mmodule, msupertype, mpropdef.mproperty.name)
759 if candidate != null then
760 if msignature == null then
761 msignature = candidate.intro.as(MMethodDef).msignature
762 end
763 end
764 end
765 end
766
767
768 # Inherit the signature
769 if msignature != null and param_names.length != param_types.length and param_names.length == msignature.arity and param_types.length == 0 then
770 # Parameters are untyped, thus inherit them
771 param_types = new Array[MType]
772 for mparameter in msignature.mparameters do
773 param_types.add(mparameter.mtype)
774 end
775 vararg_rank = msignature.vararg_rank
776 end
777 if msignature != null and ret_type == null then
778 ret_type = msignature.return_mtype
779 end
780
781 if param_names.length != param_types.length then
782 # Some parameters are typed, other parameters are not typed.
783 modelbuilder.error(nsig.n_params[param_types.length], "Error: Untyped parameter `{param_names[param_types.length]}'.")
784 return
785 end
786
787 var mparameters = new Array[MParameter]
788 for i in [0..param_names.length[ do
789 var mparameter = new MParameter(param_names[i], param_types[i], i == vararg_rank)
790 if nsig != null then nsig.n_params[i].mparameter = mparameter
791 mparameters.add(mparameter)
792 end
793
794 # In `new`-factories, the return type is by default the classtype.
795 if ret_type == null and mpropdef.mproperty.is_new then ret_type = mclassdef.mclass.mclass_type
796
797 msignature = new MSignature(mparameters, ret_type)
798 mpropdef.msignature = msignature
799 mpropdef.is_abstract = self.get_single_annotation("abstract", modelbuilder) != null
800 mpropdef.is_intern = self.get_single_annotation("intern", modelbuilder) != null
801 mpropdef.is_extern = self.n_extern_code_block != null or self.get_single_annotation("extern", modelbuilder) != null
802 end
803
804 redef fun check_signature(modelbuilder)
805 do
806 var mpropdef = self.mpropdef
807 if mpropdef == null then return # Error thus skiped
808 var mclassdef = mpropdef.mclassdef
809 var mmodule = mclassdef.mmodule
810 var nsig = self.n_signature
811 var mysignature = self.mpropdef.msignature
812 if mysignature == null then return # Error thus skiped
813
814 # Lookup for signature in the precursor
815 # FIXME all precursors should be considered
816 if not mpropdef.is_intro then
817 var msignature = mpropdef.mproperty.intro.msignature
818 if msignature == null then return
819
820 var precursor_ret_type = msignature.return_mtype
821 var ret_type = mysignature.return_mtype
822 if ret_type != null and precursor_ret_type == null then
823 modelbuilder.error(nsig.n_type.as(not null), "Redef Error: {mpropdef.mproperty} is a procedure, not a function.")
824 return
825 end
826
827 if mysignature.arity > 0 then
828 # Check parameters types
829 for i in [0..mysignature.arity[ do
830 var myt = mysignature.mparameters[i].mtype
831 var prt = msignature.mparameters[i].mtype
832 var node = nsig.n_params[i]
833 if not modelbuilder.check_sametype(node, mmodule, mclassdef.bound_mtype, myt, prt) then
834 modelbuilder.error(node, "Redef Error: Wrong type for parameter `{mysignature.mparameters[i].name}'. found {myt}, expected {prt} as in {mpropdef.mproperty.intro}.")
835 end
836 end
837 end
838 if precursor_ret_type != null then
839 var node: nullable ANode = null
840 if nsig != null then node = nsig.n_type
841 if node == null then node = self
842 if ret_type == null then
843 # Inherit the return type
844 ret_type = precursor_ret_type
845 else if not modelbuilder.check_subtype(node, mmodule, mclassdef.bound_mtype, ret_type, precursor_ret_type) then
846 modelbuilder.error(node, "Redef Error: Wrong return type. found {ret_type}, expected {precursor_ret_type} as in {mpropdef.mproperty.intro}.")
847 end
848 end
849 end
850
851 if mysignature.arity > 0 then
852 # Check parameters visibility
853 for i in [0..mysignature.arity[ do
854 var nt = nsig.n_params[i].n_type
855 if nt != null then modelbuilder.check_visibility(nt, nt.mtype.as(not null), mpropdef)
856 end
857 var nt = nsig.n_type
858 if nt != null then modelbuilder.check_visibility(nt, nt.mtype.as(not null), mpropdef)
859 end
860 end
861 end
862
863 redef class AAttrPropdef
864 redef type MPROPDEF: MAttributeDef
865
866 # Is the node tagged `noinit`?
867 var noinit = false
868
869 # Is the node tagged lazy?
870 var is_lazy = false
871
872 # Has the node a default value?
873 # Could be through `n_expr` or `n_block`
874 var has_value = false
875
876 # The guard associated to a lazy attribute.
877 # Because some engines does not have a working `isset`,
878 # this additional attribute is used to guard the lazy initialization.
879 # TODO: to remove once isset is correctly implemented
880 var mlazypropdef: nullable MAttributeDef
881
882 # The associated getter (read accessor) if any
883 var mreadpropdef: nullable MMethodDef is writable
884 # The associated setter (write accessor) if any
885 var mwritepropdef: nullable MMethodDef is writable
886
887 redef fun build_property(modelbuilder, mclassdef)
888 do
889 var mclass = mclassdef.mclass
890
891 var name: String
892 name = self.n_id2.text
893
894 if mclass.kind == interface_kind or mclassdef.mclass.kind == enum_kind then
895 modelbuilder.error(self, "Error: Attempt to define attribute {name} in the interface {mclass}.")
896 else if mclass.kind == enum_kind then
897 modelbuilder.error(self, "Error: Attempt to define attribute {name} in the enum class {mclass}.")
898 else if mclass.kind == extern_kind then
899 modelbuilder.error(self, "Error: Attempt to define attribute {name} in the extern class {mclass}.")
900 end
901
902 # New attribute style
903 var nid2 = self.n_id2
904 var mprop = new MAttribute(mclassdef, "_" + name, private_visibility)
905 var mpropdef = new MAttributeDef(mclassdef, mprop, self.location)
906 self.mpropdef = mpropdef
907 modelbuilder.mpropdef2npropdef[mpropdef] = self
908
909 var readname = name
910 var mreadprop = modelbuilder.try_get_mproperty_by_name(nid2, mclassdef, readname).as(nullable MMethod)
911 if mreadprop == null then
912 var mvisibility = new_property_visibility(modelbuilder, mclassdef, self.n_visibility)
913 mreadprop = new MMethod(mclassdef, readname, mvisibility)
914 if not self.check_redef_keyword(modelbuilder, mclassdef, n_kwredef, false, mreadprop) then return
915 mreadprop.deprecation = mprop.deprecation
916 else
917 if not self.check_redef_keyword(modelbuilder, mclassdef, n_kwredef, true, mreadprop) then return
918 check_redef_property_visibility(modelbuilder, self.n_visibility, mreadprop)
919 end
920 mclassdef.mprop2npropdef[mreadprop] = self
921
922 var mreadpropdef = new MMethodDef(mclassdef, mreadprop, self.location)
923 self.mreadpropdef = mreadpropdef
924 modelbuilder.mpropdef2npropdef[mreadpropdef] = self
925 set_doc(mreadpropdef, modelbuilder)
926 mpropdef.mdoc = mreadpropdef.mdoc
927
928 has_value = n_expr != null or n_block != null
929
930 var atnoinit = self.get_single_annotation("noinit", modelbuilder)
931 if atnoinit != null then
932 noinit = true
933 if has_value then
934 modelbuilder.error(atnoinit, "Error: `noinit` attributes cannot have an initial value")
935 return
936 end
937 end
938
939 var atlazy = self.get_single_annotation("lazy", modelbuilder)
940 var atautoinit = self.get_single_annotation("autoinit", modelbuilder)
941 if atlazy != null or atautoinit != null then
942 if atlazy != null and atautoinit != null then
943 modelbuilder.error(atlazy, "Error: lazy incompatible with autoinit")
944 return
945 end
946 if not has_value then
947 if atlazy != null then
948 modelbuilder.error(atlazy, "Error: a lazy attribute needs a value")
949 else if atautoinit != null then
950 modelbuilder.error(atautoinit, "Error: a autoinit attribute needs a value")
951 end
952 return
953 end
954 is_lazy = true
955 var mlazyprop = new MAttribute(mclassdef, "lazy _" + name, none_visibility)
956 var mlazypropdef = new MAttributeDef(mclassdef, mlazyprop, self.location)
957 self.mlazypropdef = mlazypropdef
958 end
959
960 var atreadonly = self.get_single_annotation("readonly", modelbuilder)
961 if atreadonly != null then
962 if not has_value then
963 modelbuilder.error(atreadonly, "Error: a readonly attribute needs a value")
964 end
965 # No setter, so just leave
966 return
967 end
968
969 var writename = name + "="
970 var atwritable = self.get_single_annotation("writable", modelbuilder)
971 if atwritable != null then
972 if not atwritable.n_args.is_empty then
973 writename = atwritable.arg_as_id(modelbuilder) or else writename
974 end
975 end
976 var mwriteprop = modelbuilder.try_get_mproperty_by_name(nid2, mclassdef, writename).as(nullable MMethod)
977 var nwkwredef: nullable Token = null
978 if atwritable != null then nwkwredef = atwritable.n_kwredef
979 if mwriteprop == null then
980 var mvisibility
981 if atwritable != null then
982 mvisibility = new_property_visibility(modelbuilder, mclassdef, atwritable.n_visibility)
983 else
984 mvisibility = private_visibility
985 end
986 mwriteprop = new MMethod(mclassdef, writename, mvisibility)
987 if not self.check_redef_keyword(modelbuilder, mclassdef, nwkwredef, false, mwriteprop) then return
988 mwriteprop.deprecation = mprop.deprecation
989 else
990 if not self.check_redef_keyword(modelbuilder, mclassdef, nwkwredef or else n_kwredef, true, mwriteprop) then return
991 if atwritable != null then
992 check_redef_property_visibility(modelbuilder, atwritable.n_visibility, mwriteprop)
993 end
994 end
995 mclassdef.mprop2npropdef[mwriteprop] = self
996
997 var mwritepropdef = new MMethodDef(mclassdef, mwriteprop, self.location)
998 self.mwritepropdef = mwritepropdef
999 modelbuilder.mpropdef2npropdef[mwritepropdef] = self
1000 mwritepropdef.mdoc = mpropdef.mdoc
1001 end
1002
1003 redef fun build_signature(modelbuilder)
1004 do
1005 var mpropdef = self.mpropdef
1006 if mpropdef == null then return # Error thus skipped
1007 var mclassdef = mpropdef.mclassdef
1008 var mmodule = mclassdef.mmodule
1009 var mtype: nullable MType = null
1010
1011 var mreadpropdef = self.mreadpropdef
1012
1013 var ntype = self.n_type
1014 if ntype != null then
1015 mtype = modelbuilder.resolve_mtype(mmodule, mclassdef, ntype)
1016 if mtype == null then return
1017 end
1018
1019 var inherited_type: nullable MType = null
1020 # Inherit the type from the getter (usually an abstract getter)
1021 if mreadpropdef != null and not mreadpropdef.is_intro then
1022 var msignature = mreadpropdef.mproperty.intro.msignature
1023 if msignature == null then return # Error, thus skipped
1024 inherited_type = msignature.return_mtype
1025 if inherited_type != null then
1026 # The inherited type is adapted to use the local formal types, if any.
1027 inherited_type = inherited_type.resolve_for(mclassdef.mclass.mclass_type, mclassdef.bound_mtype, mmodule, false)
1028 if mtype == null then mtype = inherited_type
1029 end
1030 end
1031
1032 var nexpr = self.n_expr
1033 if mtype == null then
1034 if nexpr != null then
1035 if nexpr isa ANewExpr then
1036 mtype = modelbuilder.resolve_mtype(mmodule, mclassdef, nexpr.n_type)
1037 else if nexpr isa AIntExpr then
1038 var cla = modelbuilder.try_get_mclass_by_name(nexpr, mmodule, "Int")
1039 if cla != null then mtype = cla.mclass_type
1040 else if nexpr isa AFloatExpr then
1041 var cla = modelbuilder.try_get_mclass_by_name(nexpr, mmodule, "Float")
1042 if cla != null then mtype = cla.mclass_type
1043 else if nexpr isa ACharExpr then
1044 var cla = modelbuilder.try_get_mclass_by_name(nexpr, mmodule, "Char")
1045 if cla != null then mtype = cla.mclass_type
1046 else if nexpr isa ABoolExpr then
1047 var cla = modelbuilder.try_get_mclass_by_name(nexpr, mmodule, "Bool")
1048 if cla != null then mtype = cla.mclass_type
1049 else if nexpr isa ASuperstringExpr then
1050 var cla = modelbuilder.try_get_mclass_by_name(nexpr, mmodule, "String")
1051 if cla != null then mtype = cla.mclass_type
1052 else if nexpr isa AStringFormExpr then
1053 var cla = modelbuilder.try_get_mclass_by_name(nexpr, mmodule, "String")
1054 if cla != null then mtype = cla.mclass_type
1055 else
1056 modelbuilder.error(self, "Error: Untyped attribute {mpropdef}. Implicit typing allowed only for literals and new.")
1057 end
1058
1059 if mtype == null then return
1060 end
1061 else if ntype != null and inherited_type == mtype then
1062 if nexpr isa ANewExpr then
1063 var xmtype = modelbuilder.resolve_mtype(mmodule, mclassdef, nexpr.n_type)
1064 if xmtype == mtype then
1065 modelbuilder.advice(ntype, "useless-type", "Warning: useless type definition")
1066 end
1067 end
1068 end
1069
1070 if mtype == null then
1071 modelbuilder.error(self, "Error: Untyped attribute {mpropdef}")
1072 return
1073 end
1074
1075 mpropdef.static_mtype = mtype
1076
1077 if mreadpropdef != null then
1078 var msignature = new MSignature(new Array[MParameter], mtype)
1079 mreadpropdef.msignature = msignature
1080 end
1081
1082 var mwritepropdef = self.mwritepropdef
1083 if mwritepropdef != null then
1084 var name: String
1085 name = n_id2.text
1086 var mparameter = new MParameter(name, mtype, false)
1087 var msignature = new MSignature([mparameter], null)
1088 mwritepropdef.msignature = msignature
1089 end
1090
1091 var mlazypropdef = self.mlazypropdef
1092 if mlazypropdef != null then
1093 mlazypropdef.static_mtype = modelbuilder.model.get_mclasses_by_name("Bool").first.mclass_type
1094 end
1095 end
1096
1097 redef fun check_signature(modelbuilder)
1098 do
1099 var mpropdef = self.mpropdef
1100 if mpropdef == null then return # Error thus skipped
1101 var ntype = self.n_type
1102 var mtype = self.mpropdef.static_mtype
1103 if mtype == null then return # Error thus skipped
1104
1105 # Lookup for signature in the precursor
1106 # FIXME all precursors should be considered
1107 if not mpropdef.is_intro then
1108 var precursor_type = mpropdef.mproperty.intro.static_mtype
1109 if precursor_type == null then return
1110
1111 if mtype != precursor_type then
1112 modelbuilder.error(ntype.as(not null), "Redef Error: Wrong static type. found {mtype}, expected {precursor_type}.")
1113 return
1114 end
1115 end
1116
1117 # Check getter and setter
1118 var meth = self.mreadpropdef
1119 if meth != null then
1120 self.check_method_signature(modelbuilder, meth)
1121 var node: nullable ANode = ntype
1122 if node == null then node = self
1123 modelbuilder.check_visibility(node, mtype, meth)
1124 end
1125 meth = self.mwritepropdef
1126 if meth != null then
1127 self.check_method_signature(modelbuilder, meth)
1128 var node: nullable ANode = ntype
1129 if node == null then node = self
1130 modelbuilder.check_visibility(node, mtype, meth)
1131 end
1132 end
1133
1134 private fun check_method_signature(modelbuilder: ModelBuilder, mpropdef: MMethodDef)
1135 do
1136 var mclassdef = mpropdef.mclassdef
1137 var mmodule = mclassdef.mmodule
1138 var nsig = self.n_type
1139 var mysignature = mpropdef.msignature
1140 if mysignature == null then return # Error thus skiped
1141
1142 # Lookup for signature in the precursor
1143 # FIXME all precursors should be considered
1144 if not mpropdef.is_intro then
1145 var msignature = mpropdef.mproperty.intro.msignature
1146 if msignature == null then return
1147
1148 if mysignature.arity != msignature.arity then
1149 var node: ANode
1150 if nsig != null then node = nsig else node = self
1151 modelbuilder.error(node, "Redef Error: {mysignature.arity} parameters found, {msignature.arity} expected. Signature is {mpropdef}{msignature}")
1152 return
1153 end
1154 var precursor_ret_type = msignature.return_mtype
1155 var ret_type = mysignature.return_mtype
1156 if ret_type != null and precursor_ret_type == null then
1157 var node: ANode
1158 if nsig != null then node = nsig else node = self
1159 modelbuilder.error(node, "Redef Error: {mpropdef.mproperty} is a procedure, not a function.")
1160 return
1161 end
1162
1163 if mysignature.arity > 0 then
1164 # Check parameters types
1165 for i in [0..mysignature.arity[ do
1166 var myt = mysignature.mparameters[i].mtype
1167 var prt = msignature.mparameters[i].mtype
1168 var node: ANode
1169 if nsig != null then node = nsig else node = self
1170 if not modelbuilder.check_sametype(node, mmodule, mclassdef.bound_mtype, myt, prt) then
1171 modelbuilder.error(node, "Redef Error: Wrong type for parameter `{mysignature.mparameters[i].name}'. found {myt}, expected {prt}.")
1172 end
1173 end
1174 end
1175 if precursor_ret_type != null then
1176 var node: ANode
1177 if nsig != null then node = nsig else node = self
1178 if ret_type == null then
1179 # Inherit the return type
1180 ret_type = precursor_ret_type
1181 else if not modelbuilder.check_subtype(node, mmodule, mclassdef.bound_mtype, ret_type, precursor_ret_type) then
1182 modelbuilder.error(node, "Redef Error: Wrong return type. found {ret_type}, expected {precursor_ret_type}.")
1183 end
1184 end
1185 end
1186 end
1187 end
1188
1189 redef class ATypePropdef
1190 redef type MPROPDEF: MVirtualTypeDef
1191
1192 redef fun build_property(modelbuilder, mclassdef)
1193 do
1194 var name = self.n_id.text
1195 var mprop = modelbuilder.try_get_mproperty_by_name(self.n_id, mclassdef, name)
1196 if mprop == null then
1197 var mvisibility = new_property_visibility(modelbuilder, mclassdef, self.n_visibility)
1198 mprop = new MVirtualTypeProp(mclassdef, name, mvisibility)
1199 for c in name.chars do if c >= 'a' and c<= 'z' then
1200 modelbuilder.warning(n_id, "bad-type-name", "Warning: lowercase in the virtual type {name}")
1201 break
1202 end
1203 if not self.check_redef_keyword(modelbuilder, mclassdef, self.n_kwredef, false, mprop) then return
1204 else
1205 if not self.check_redef_keyword(modelbuilder, mclassdef, self.n_kwredef, true, mprop) then return
1206 assert mprop isa MVirtualTypeProp
1207 check_redef_property_visibility(modelbuilder, self.n_visibility, mprop)
1208 end
1209 mclassdef.mprop2npropdef[mprop] = self
1210
1211 var mpropdef = new MVirtualTypeDef(mclassdef, mprop, self.location)
1212 self.mpropdef = mpropdef
1213 modelbuilder.mpropdef2npropdef[mpropdef] = self
1214 if mpropdef.is_intro then
1215 modelbuilder.toolcontext.info("{mpropdef} introduces new type {mprop.full_name}", 4)
1216 else
1217 modelbuilder.toolcontext.info("{mpropdef} redefines type {mprop.full_name}", 4)
1218 end
1219 set_doc(mpropdef, modelbuilder)
1220
1221 var atfixed = get_single_annotation("fixed", modelbuilder)
1222 if atfixed != null then
1223 mpropdef.is_fixed = true
1224 end
1225 end
1226
1227 redef fun build_signature(modelbuilder)
1228 do
1229 var mpropdef = self.mpropdef
1230 if mpropdef == null then return # Error thus skipped
1231 var mclassdef = mpropdef.mclassdef
1232 var mmodule = mclassdef.mmodule
1233 var mtype: nullable MType = null
1234
1235 var ntype = self.n_type
1236 mtype = modelbuilder.resolve_mtype(mmodule, mclassdef, ntype)
1237 if mtype == null then return
1238
1239 mpropdef.bound = mtype
1240 # print "{mpropdef}: {mtype}"
1241 end
1242
1243 redef fun check_signature(modelbuilder)
1244 do
1245 var mpropdef = self.mpropdef
1246 if mpropdef == null then return # Error thus skipped
1247
1248 var bound = self.mpropdef.bound
1249 if bound == null then return # Error thus skipped
1250
1251 modelbuilder.check_visibility(n_type, bound, mpropdef)
1252
1253 var mclassdef = mpropdef.mclassdef
1254 var mmodule = mclassdef.mmodule
1255 var anchor = mclassdef.bound_mtype
1256
1257 # Check circularity
1258 if bound isa MVirtualType then
1259 # Slow case: progress on each resolution until: (i) we loop, or (ii) we found a non formal type
1260 var seen = [self.mpropdef.mproperty.mvirtualtype]
1261 loop
1262 if seen.has(bound) then
1263 seen.add(bound)
1264 modelbuilder.error(self, "Error: circularity of virtual type definition: {seen.join(" -> ")}")
1265 return
1266 end
1267 seen.add(bound)
1268 var next = bound.lookup_bound(mmodule, anchor)
1269 if not next isa MVirtualType then break
1270 bound = next
1271 end
1272 end
1273
1274 # Check redefinitions
1275 bound = mpropdef.bound.as(not null)
1276 for p in mpropdef.mproperty.lookup_super_definitions(mmodule, anchor) do
1277 var supbound = p.bound
1278 if supbound == null then break # broken super bound, skip error
1279 if p.is_fixed then
1280 modelbuilder.error(self, "Redef Error: Virtual type {mpropdef.mproperty} is fixed in super-class {p.mclassdef.mclass}")
1281 break
1282 end
1283 if p.mclassdef.mclass == mclassdef.mclass then
1284 # Still a warning to pass existing bad code
1285 modelbuilder.warning(n_type, "refine-type", "Redef Error: a virtual type cannot be refined.")
1286 break
1287 end
1288 if not modelbuilder.check_subtype(n_type, mmodule, anchor, bound, supbound) then
1289 modelbuilder.error(n_type, "Redef Error: Wrong bound type. Found {bound}, expected a subtype of {supbound}, as in {p}.")
1290 break
1291 end
1292 end
1293 end
1294 end