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