modelize: adapt inherited signature to use local names in error messages.
[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 kwredef == null then
474 if need_redef then
475 modelbuilder.error(self, "Redef error: {mclassdef.mclass}::{mprop.name} is an inherited property. To redefine it, add the redef keyword.")
476 return false
477 end
478 else
479 if not need_redef then
480 modelbuilder.error(self, "Error: No property {mclassdef.mclass}::{mprop.name} is inherited. Remove the redef keyword to define a new property.")
481 return false
482 end
483 end
484 return true
485 end
486
487 end
488
489 redef class ASignature
490 # Is the model builder has correctly visited the signature
491 var is_visited = false
492 # Names of parameters from the AST
493 # REQUIRE: is_visited
494 var param_names = new Array[String]
495 # Types of parameters from the AST
496 # REQUIRE: is_visited
497 var param_types = new Array[MType]
498 # Rank of the vararg (of -1 if none)
499 # REQUIRE: is_visited
500 var vararg_rank: Int = -1
501 # Return type
502 var ret_type: nullable MType = null
503
504 # Visit and fill information about a signature
505 private fun visit_signature(modelbuilder: ModelBuilder, mclassdef: MClassDef): Bool
506 do
507 var mmodule = mclassdef.mmodule
508 var param_names = self.param_names
509 var param_types = self.param_types
510 for np in self.n_params do
511 param_names.add(np.n_id.text)
512 var ntype = np.n_type
513 if ntype != null then
514 var mtype = modelbuilder.resolve_mtype(mmodule, mclassdef, ntype)
515 if mtype == null then return false # Skip error
516 for i in [0..param_names.length-param_types.length[ do
517 param_types.add(mtype)
518 end
519 if np.n_dotdotdot != null then
520 if self.vararg_rank != -1 then
521 modelbuilder.error(np, "Error: {param_names[self.vararg_rank]} is already a vararg")
522 return false
523 else
524 self.vararg_rank = param_names.length - 1
525 end
526 end
527 end
528 end
529 var ntype = self.n_type
530 if ntype != null then
531 self.ret_type = modelbuilder.resolve_mtype(mmodule, mclassdef, ntype)
532 if self.ret_type == null then return false # Skip error
533 end
534
535 self.is_visited = true
536 return true
537 end
538
539 # Build a visited signature
540 fun build_signature(modelbuilder: ModelBuilder): nullable MSignature
541 do
542 if param_names.length != param_types.length then
543 # Some parameters are typed, other parameters are not typed.
544 modelbuilder.error(self.n_params[param_types.length], "Error: Untyped parameter `{param_names[param_types.length]}'.")
545 return null
546 end
547
548 var mparameters = new Array[MParameter]
549 for i in [0..param_names.length[ do
550 var mparameter = new MParameter(param_names[i], param_types[i], i == vararg_rank)
551 self.n_params[i].mparameter = mparameter
552 mparameters.add(mparameter)
553 end
554
555 var msignature = new MSignature(mparameters, ret_type)
556 return msignature
557 end
558 end
559
560 redef class AParam
561 # The associated mparameter if any
562 var mparameter: nullable MParameter = null
563 end
564
565 redef class AMethPropdef
566 redef type MPROPDEF: MMethodDef
567
568
569 # Can self be used as a root init?
570 private fun look_like_a_root_init(modelbuilder: ModelBuilder, mclassdef: MClassDef): Bool
571 do
572 # Need the `init` keyword
573 if n_kwinit == null then return false
574 # Need to by anonymous
575 if self.n_methid != null then return false
576 # No annotation on itself
577 if get_single_annotation("old_style_init", modelbuilder) != null then return false
578 # Nor on its module
579 var amod = self.parent.parent.as(AModule)
580 var amoddecl = amod.n_moduledecl
581 if amoddecl != null then
582 var old = amoddecl.get_single_annotation("old_style_init", modelbuilder)
583 if old != null then return false
584 end
585 # No parameters
586 if self.n_signature.n_params.length > 0 then
587 modelbuilder.advice(self, "old-init", "Warning: init with signature in {mclassdef}")
588 return false
589 end
590 # Cannot be private or something
591 if not self.n_visibility isa APublicVisibility then
592 modelbuilder.advice(self, "old-init", "Warning: non-public init in {mclassdef}")
593 return false
594 end
595
596 return true
597 end
598
599 redef fun build_property(modelbuilder, mclassdef)
600 do
601 var n_kwinit = n_kwinit
602 var n_kwnew = n_kwnew
603 var is_init = n_kwinit != null or n_kwnew != null
604 var name: String
605 var amethodid = self.n_methid
606 var name_node: ANode
607 if amethodid == null then
608 if not is_init then
609 name = "main"
610 name_node = self
611 else if n_kwinit != null then
612 name = "init"
613 name_node = n_kwinit
614 else if n_kwnew != null then
615 name = "new"
616 name_node = n_kwnew
617 else
618 abort
619 end
620 else if amethodid isa AIdMethid then
621 name = amethodid.n_id.text
622 name_node = amethodid
623 else
624 # operator, bracket or assign
625 name = amethodid.collect_text
626 name_node = amethodid
627
628 if name == "-" and self.n_signature.n_params.length == 0 then
629 name = "unary -"
630 end
631 end
632
633 var look_like_a_root_init = look_like_a_root_init(modelbuilder, mclassdef)
634 var mprop: nullable MMethod = null
635 if not is_init or n_kwredef != null then mprop = modelbuilder.try_get_mproperty_by_name(name_node, mclassdef, name).as(nullable MMethod)
636 if mprop == null and look_like_a_root_init then
637 mprop = modelbuilder.the_root_init_mmethod
638 var nb = n_block
639 if nb isa ABlockExpr and nb.n_expr.is_empty and n_doc == null then
640 modelbuilder.advice(self, "useless-init", "Warning: useless empty init in {mclassdef}")
641 end
642 end
643 if mprop == null then
644 var mvisibility = new_property_visibility(modelbuilder, mclassdef, self.n_visibility)
645 mprop = new MMethod(mclassdef, name, mvisibility)
646 if look_like_a_root_init and modelbuilder.the_root_init_mmethod == null then
647 modelbuilder.the_root_init_mmethod = mprop
648 mprop.is_root_init = true
649 end
650 mprop.is_init = is_init
651 mprop.is_new = n_kwnew != null
652 if parent isa ATopClassdef then mprop.is_toplevel = true
653 self.check_redef_keyword(modelbuilder, mclassdef, n_kwredef, false, mprop)
654 else
655 if not mprop.is_root_init and not self.check_redef_keyword(modelbuilder, mclassdef, n_kwredef, not self isa AMainMethPropdef, mprop) then return
656 check_redef_property_visibility(modelbuilder, self.n_visibility, mprop)
657 end
658 mclassdef.mprop2npropdef[mprop] = self
659
660 var mpropdef = new MMethodDef(mclassdef, mprop, self.location)
661
662 set_doc(mpropdef, modelbuilder)
663
664 self.mpropdef = mpropdef
665 modelbuilder.mpropdef2npropdef[mpropdef] = self
666 if mpropdef.is_intro then
667 modelbuilder.toolcontext.info("{mpropdef} introduces new method {mprop.full_name}", 4)
668 else
669 modelbuilder.toolcontext.info("{mpropdef} redefines method {mprop.full_name}", 4)
670 end
671 end
672
673 redef fun build_signature(modelbuilder)
674 do
675 var mpropdef = self.mpropdef
676 if mpropdef == null then return # Error thus skiped
677 var mclassdef = mpropdef.mclassdef
678 var mmodule = mclassdef.mmodule
679 var nsig = self.n_signature
680
681 if mpropdef.mproperty.is_root_init and not mclassdef.is_intro then
682 var root_init = mclassdef.mclass.root_init
683 if root_init != null then
684 # Inherit the initializers by refinement
685 mpropdef.new_msignature = root_init.new_msignature
686 assert mpropdef.initializers.is_empty
687 mpropdef.initializers.add_all root_init.initializers
688 end
689 end
690
691 # Retrieve info from the signature AST
692 var param_names = new Array[String] # Names of parameters from the AST
693 var param_types = new Array[MType] # Types of parameters from the AST
694 var vararg_rank = -1
695 var ret_type: nullable MType = null # Return type from the AST
696 if nsig != null then
697 if not nsig.visit_signature(modelbuilder, mclassdef) then return
698 param_names = nsig.param_names
699 param_types = nsig.param_types
700 vararg_rank = nsig.vararg_rank
701 ret_type = nsig.ret_type
702 end
703
704 # Look for some signature to inherit
705 # FIXME: do not inherit from the intro, but from the most specific
706 var msignature: nullable MSignature = null
707 if not mpropdef.is_intro then
708 msignature = mpropdef.mproperty.intro.msignature
709 if msignature == null then return # Skip error
710
711 # The local signature is adapted to use the local formal types, if any.
712 msignature = msignature.resolve_for(mclassdef.mclass.mclass_type, mclassdef.bound_mtype, mmodule, false)
713
714 # Check inherited signature arity
715 if param_names.length != msignature.arity then
716 var node: ANode
717 if nsig != null then node = nsig else node = self
718 modelbuilder.error(node, "Redef error: {mpropdef} redefines {mpropdef.mproperty.intro} with {param_names.length} parameter(s), {msignature.arity} expected. Signature is {mpropdef}{msignature}")
719 return
720 end
721 else if mpropdef.mproperty.is_init and not mpropdef.mproperty.is_new then
722 # FIXME UGLY: inherit signature from a super-constructor
723 for msupertype in mclassdef.supertypes do
724 msupertype = msupertype.anchor_to(mmodule, mclassdef.bound_mtype)
725 var candidate = modelbuilder.try_get_mproperty_by_name2(self, mmodule, msupertype, mpropdef.mproperty.name)
726 if candidate != null then
727 if msignature == null then
728 msignature = candidate.intro.as(MMethodDef).msignature
729 end
730 end
731 end
732 end
733
734
735 # Inherit the signature
736 if msignature != null and param_names.length != param_types.length and param_names.length == msignature.arity and param_types.length == 0 then
737 # Parameters are untyped, thus inherit them
738 param_types = new Array[MType]
739 for mparameter in msignature.mparameters do
740 param_types.add(mparameter.mtype)
741 end
742 vararg_rank = msignature.vararg_rank
743 end
744 if msignature != null and ret_type == null then
745 ret_type = msignature.return_mtype
746 end
747
748 if param_names.length != param_types.length then
749 # Some parameters are typed, other parameters are not typed.
750 modelbuilder.error(nsig.n_params[param_types.length], "Error: Untyped parameter `{param_names[param_types.length]}'.")
751 return
752 end
753
754 var mparameters = new Array[MParameter]
755 for i in [0..param_names.length[ do
756 var mparameter = new MParameter(param_names[i], param_types[i], i == vararg_rank)
757 if nsig != null then nsig.n_params[i].mparameter = mparameter
758 mparameters.add(mparameter)
759 end
760
761 # In `new`-factories, the return type is by default the classtype.
762 if ret_type == null and mpropdef.mproperty.is_new then ret_type = mclassdef.mclass.mclass_type
763
764 msignature = new MSignature(mparameters, ret_type)
765 mpropdef.msignature = msignature
766 mpropdef.is_abstract = self.get_single_annotation("abstract", modelbuilder) != null
767 mpropdef.is_intern = self.get_single_annotation("intern", modelbuilder) != null
768 mpropdef.is_extern = self.n_extern_code_block != null or self.get_single_annotation("extern", modelbuilder) != null
769 end
770
771 redef fun check_signature(modelbuilder)
772 do
773 var mpropdef = self.mpropdef
774 if mpropdef == null then return # Error thus skiped
775 var mclassdef = mpropdef.mclassdef
776 var mmodule = mclassdef.mmodule
777 var nsig = self.n_signature
778 var mysignature = self.mpropdef.msignature
779 if mysignature == null then return # Error thus skiped
780
781 # Lookup for signature in the precursor
782 # FIXME all precursors should be considered
783 if not mpropdef.is_intro then
784 var msignature = mpropdef.mproperty.intro.msignature
785 if msignature == null then return
786
787 var precursor_ret_type = msignature.return_mtype
788 var ret_type = mysignature.return_mtype
789 if ret_type != null and precursor_ret_type == null then
790 modelbuilder.error(nsig.n_type.as(not null), "Redef Error: {mpropdef.mproperty} is a procedure, not a function.")
791 return
792 end
793
794 if mysignature.arity > 0 then
795 # Check parameters types
796 for i in [0..mysignature.arity[ do
797 var myt = mysignature.mparameters[i].mtype
798 var prt = msignature.mparameters[i].mtype
799 if not myt.is_subtype(mmodule, mclassdef.bound_mtype, prt) or
800 not prt.is_subtype(mmodule, mclassdef.bound_mtype, myt) then
801 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}.")
802 end
803 end
804 end
805 if precursor_ret_type != null then
806 if ret_type == null then
807 # Inherit the return type
808 ret_type = precursor_ret_type
809 else if not ret_type.is_subtype(mmodule, mclassdef.bound_mtype, precursor_ret_type) then
810 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}.")
811 end
812 end
813 end
814
815 if mysignature.arity > 0 then
816 # Check parameters visibility
817 for i in [0..mysignature.arity[ do
818 var nt = nsig.n_params[i].n_type
819 if nt != null then modelbuilder.check_visibility(nt, nt.mtype.as(not null), mpropdef)
820 end
821 var nt = nsig.n_type
822 if nt != null then modelbuilder.check_visibility(nt, nt.mtype.as(not null), mpropdef)
823 end
824 end
825 end
826
827 redef class AAttrPropdef
828 redef type MPROPDEF: MAttributeDef
829
830 # Is the node tagged `noinit`?
831 var noinit = false
832
833 # Is the node tagged lazy?
834 var is_lazy = false
835
836 # Has the node a default value?
837 # Could be through `n_expr` or `n_block`
838 var has_value = false
839
840 # The guard associated to a lazy attribute.
841 # Because some engines does not have a working `isset`,
842 # this additional attribute is used to guard the lazy initialization.
843 # TODO: to remove once isset is correctly implemented
844 var mlazypropdef: nullable MAttributeDef
845
846 # The associated getter (read accessor) if any
847 var mreadpropdef: nullable MMethodDef is writable
848 # The associated setter (write accessor) if any
849 var mwritepropdef: nullable MMethodDef is writable
850
851 redef fun build_property(modelbuilder, mclassdef)
852 do
853 var mclass = mclassdef.mclass
854
855 var name: String
856 name = self.n_id2.text
857
858 if mclass.kind == interface_kind or mclassdef.mclass.kind == enum_kind then
859 modelbuilder.error(self, "Error: Attempt to define attribute {name} in the interface {mclass}.")
860 else if mclass.kind == enum_kind then
861 modelbuilder.error(self, "Error: Attempt to define attribute {name} in the enum class {mclass}.")
862 else if mclass.kind == extern_kind then
863 modelbuilder.error(self, "Error: Attempt to define attribute {name} in the extern class {mclass}.")
864 end
865
866 # New attribute style
867 var nid2 = self.n_id2
868 var mprop = new MAttribute(mclassdef, "_" + name, private_visibility)
869 var mpropdef = new MAttributeDef(mclassdef, mprop, self.location)
870 self.mpropdef = mpropdef
871 modelbuilder.mpropdef2npropdef[mpropdef] = self
872
873 var readname = name
874 var mreadprop = modelbuilder.try_get_mproperty_by_name(nid2, mclassdef, readname).as(nullable MMethod)
875 if mreadprop == null then
876 var mvisibility = new_property_visibility(modelbuilder, mclassdef, self.n_visibility)
877 mreadprop = new MMethod(mclassdef, readname, mvisibility)
878 if not self.check_redef_keyword(modelbuilder, mclassdef, n_kwredef, false, mreadprop) then return
879 mreadprop.deprecation = mprop.deprecation
880 else
881 if not self.check_redef_keyword(modelbuilder, mclassdef, n_kwredef, true, mreadprop) then return
882 check_redef_property_visibility(modelbuilder, self.n_visibility, mreadprop)
883 end
884 mclassdef.mprop2npropdef[mreadprop] = self
885
886 var mreadpropdef = new MMethodDef(mclassdef, mreadprop, self.location)
887 self.mreadpropdef = mreadpropdef
888 modelbuilder.mpropdef2npropdef[mreadpropdef] = self
889 set_doc(mreadpropdef, modelbuilder)
890 mpropdef.mdoc = mreadpropdef.mdoc
891
892 has_value = n_expr != null or n_block != null
893
894 var atnoinit = self.get_single_annotation("noinit", modelbuilder)
895 if atnoinit != null then
896 noinit = true
897 if has_value then
898 modelbuilder.error(atnoinit, "Error: `noinit` attributes cannot have an initial value")
899 return
900 end
901 end
902
903 var atlazy = self.get_single_annotation("lazy", modelbuilder)
904 var atautoinit = self.get_single_annotation("autoinit", modelbuilder)
905 if atlazy != null or atautoinit != null then
906 if atlazy != null and atautoinit != null then
907 modelbuilder.error(atlazy, "Error: lazy incompatible with autoinit")
908 return
909 end
910 if not has_value then
911 if atlazy != null then
912 modelbuilder.error(atlazy, "Error: a lazy attribute needs a value")
913 else if atautoinit != null then
914 modelbuilder.error(atautoinit, "Error: a autoinit attribute needs a value")
915 end
916 return
917 end
918 is_lazy = true
919 var mlazyprop = new MAttribute(mclassdef, "lazy _" + name, none_visibility)
920 var mlazypropdef = new MAttributeDef(mclassdef, mlazyprop, self.location)
921 self.mlazypropdef = mlazypropdef
922 end
923
924 var atreadonly = self.get_single_annotation("readonly", modelbuilder)
925 if atreadonly != null then
926 if not has_value then
927 modelbuilder.error(atreadonly, "Error: a readonly attribute needs a value")
928 end
929 # No setter, so just leave
930 return
931 end
932
933 var writename = name + "="
934 var atwritable = self.get_single_annotation("writable", modelbuilder)
935 if atwritable != null then
936 if not atwritable.n_args.is_empty then
937 writename = atwritable.arg_as_id(modelbuilder) or else writename
938 end
939 end
940 var mwriteprop = modelbuilder.try_get_mproperty_by_name(nid2, mclassdef, writename).as(nullable MMethod)
941 var nwkwredef: nullable Token = null
942 if atwritable != null then nwkwredef = atwritable.n_kwredef
943 if mwriteprop == null then
944 var mvisibility
945 if atwritable != null then
946 mvisibility = new_property_visibility(modelbuilder, mclassdef, atwritable.n_visibility)
947 else
948 mvisibility = private_visibility
949 end
950 mwriteprop = new MMethod(mclassdef, writename, mvisibility)
951 if not self.check_redef_keyword(modelbuilder, mclassdef, nwkwredef, false, mwriteprop) then return
952 mwriteprop.deprecation = mprop.deprecation
953 else
954 if not self.check_redef_keyword(modelbuilder, mclassdef, nwkwredef or else n_kwredef, true, mwriteprop) then return
955 if atwritable != null then
956 check_redef_property_visibility(modelbuilder, atwritable.n_visibility, mwriteprop)
957 end
958 end
959 mclassdef.mprop2npropdef[mwriteprop] = self
960
961 var mwritepropdef = new MMethodDef(mclassdef, mwriteprop, self.location)
962 self.mwritepropdef = mwritepropdef
963 modelbuilder.mpropdef2npropdef[mwritepropdef] = self
964 mwritepropdef.mdoc = mpropdef.mdoc
965 end
966
967 redef fun build_signature(modelbuilder)
968 do
969 var mpropdef = self.mpropdef
970 if mpropdef == null then return # Error thus skipped
971 var mclassdef = mpropdef.mclassdef
972 var mmodule = mclassdef.mmodule
973 var mtype: nullable MType = null
974
975 var mreadpropdef = self.mreadpropdef
976
977 var ntype = self.n_type
978 if ntype != null then
979 mtype = modelbuilder.resolve_mtype(mmodule, mclassdef, ntype)
980 if mtype == null then return
981 end
982
983 var inherited_type: nullable MType = null
984 # Inherit the type from the getter (usually an abstract getter)
985 if mreadpropdef != null and not mreadpropdef.is_intro then
986 var msignature = mreadpropdef.mproperty.intro.msignature
987 if msignature == null then return # Error, thus skipped
988 inherited_type = msignature.return_mtype
989 if inherited_type != null then
990 # The inherited type is adapted to use the local formal types, if any.
991 inherited_type = inherited_type.resolve_for(mclassdef.mclass.mclass_type, mclassdef.bound_mtype, mmodule, false)
992 if mtype == null then mtype = inherited_type
993 end
994 end
995
996 var nexpr = self.n_expr
997 if mtype == null then
998 if nexpr != null then
999 if nexpr isa ANewExpr then
1000 mtype = modelbuilder.resolve_mtype(mmodule, mclassdef, nexpr.n_type)
1001 else if nexpr isa AIntExpr then
1002 var cla = modelbuilder.try_get_mclass_by_name(nexpr, mmodule, "Int")
1003 if cla != null then mtype = cla.mclass_type
1004 else if nexpr isa AFloatExpr then
1005 var cla = modelbuilder.try_get_mclass_by_name(nexpr, mmodule, "Float")
1006 if cla != null then mtype = cla.mclass_type
1007 else if nexpr isa ACharExpr then
1008 var cla = modelbuilder.try_get_mclass_by_name(nexpr, mmodule, "Char")
1009 if cla != null then mtype = cla.mclass_type
1010 else if nexpr isa ABoolExpr then
1011 var cla = modelbuilder.try_get_mclass_by_name(nexpr, mmodule, "Bool")
1012 if cla != null then mtype = cla.mclass_type
1013 else if nexpr isa ASuperstringExpr then
1014 var cla = modelbuilder.try_get_mclass_by_name(nexpr, mmodule, "String")
1015 if cla != null then mtype = cla.mclass_type
1016 else if nexpr isa AStringFormExpr then
1017 var cla = modelbuilder.try_get_mclass_by_name(nexpr, mmodule, "String")
1018 if cla != null then mtype = cla.mclass_type
1019 else
1020 modelbuilder.error(self, "Error: Untyped attribute {mpropdef}. Implicit typing allowed only for literals and new.")
1021 end
1022
1023 if mtype == null then return
1024 end
1025 else if ntype != null and inherited_type == mtype then
1026 if nexpr isa ANewExpr then
1027 var xmtype = modelbuilder.resolve_mtype(mmodule, mclassdef, nexpr.n_type)
1028 if xmtype == mtype then
1029 modelbuilder.advice(ntype, "useless-type", "Warning: useless type definition")
1030 end
1031 end
1032 end
1033
1034 if mtype == null then
1035 modelbuilder.error(self, "Error: Untyped attribute {mpropdef}")
1036 return
1037 end
1038
1039 mpropdef.static_mtype = mtype
1040
1041 if mreadpropdef != null then
1042 var msignature = new MSignature(new Array[MParameter], mtype)
1043 mreadpropdef.msignature = msignature
1044 end
1045
1046 var mwritepropdef = self.mwritepropdef
1047 if mwritepropdef != null then
1048 var name: String
1049 name = n_id2.text
1050 var mparameter = new MParameter(name, mtype, false)
1051 var msignature = new MSignature([mparameter], null)
1052 mwritepropdef.msignature = msignature
1053 end
1054
1055 var mlazypropdef = self.mlazypropdef
1056 if mlazypropdef != null then
1057 mlazypropdef.static_mtype = modelbuilder.model.get_mclasses_by_name("Bool").first.mclass_type
1058 end
1059 end
1060
1061 redef fun check_signature(modelbuilder)
1062 do
1063 var mpropdef = self.mpropdef
1064 if mpropdef == null then return # Error thus skipped
1065 var ntype = self.n_type
1066 var mtype = self.mpropdef.static_mtype
1067 if mtype == null then return # Error thus skipped
1068
1069 # Lookup for signature in the precursor
1070 # FIXME all precursors should be considered
1071 if not mpropdef.is_intro then
1072 var precursor_type = mpropdef.mproperty.intro.static_mtype
1073 if precursor_type == null then return
1074
1075 if mtype != precursor_type then
1076 modelbuilder.error(ntype.as(not null), "Redef Error: Wrong static type. found {mtype}, expected {precursor_type}.")
1077 return
1078 end
1079 end
1080
1081 # Check getter and setter
1082 var meth = self.mreadpropdef
1083 if meth != null then
1084 self.check_method_signature(modelbuilder, meth)
1085 var node: nullable ANode = ntype
1086 if node == null then node = self
1087 modelbuilder.check_visibility(node, mtype, meth)
1088 end
1089 meth = self.mwritepropdef
1090 if meth != null then
1091 self.check_method_signature(modelbuilder, meth)
1092 var node: nullable ANode = ntype
1093 if node == null then node = self
1094 modelbuilder.check_visibility(node, mtype, meth)
1095 end
1096 end
1097
1098 private fun check_method_signature(modelbuilder: ModelBuilder, mpropdef: MMethodDef)
1099 do
1100 var mclassdef = mpropdef.mclassdef
1101 var mmodule = mclassdef.mmodule
1102 var nsig = self.n_type
1103 var mysignature = mpropdef.msignature
1104 if mysignature == null then return # Error thus skiped
1105
1106 # Lookup for signature in the precursor
1107 # FIXME all precursors should be considered
1108 if not mpropdef.is_intro then
1109 var msignature = mpropdef.mproperty.intro.msignature
1110 if msignature == null then return
1111
1112 if mysignature.arity != msignature.arity then
1113 var node: ANode
1114 if nsig != null then node = nsig else node = self
1115 modelbuilder.error(node, "Redef Error: {mysignature.arity} parameters found, {msignature.arity} expected. Signature is {mpropdef}{msignature}")
1116 return
1117 end
1118 var precursor_ret_type = msignature.return_mtype
1119 var ret_type = mysignature.return_mtype
1120 if ret_type != null and precursor_ret_type == null then
1121 var node: ANode
1122 if nsig != null then node = nsig else node = self
1123 modelbuilder.error(node, "Redef Error: {mpropdef.mproperty} is a procedure, not a function.")
1124 return
1125 end
1126
1127 if mysignature.arity > 0 then
1128 # Check parameters types
1129 for i in [0..mysignature.arity[ do
1130 var myt = mysignature.mparameters[i].mtype
1131 var prt = msignature.mparameters[i].mtype
1132 if not myt.is_subtype(mmodule, mclassdef.bound_mtype, prt) or
1133 not prt.is_subtype(mmodule, mclassdef.bound_mtype, myt) then
1134 var node: ANode
1135 if nsig != null then node = nsig else node = self
1136 modelbuilder.error(node, "Redef Error: Wrong type for parameter `{mysignature.mparameters[i].name}'. found {myt}, expected {prt}.")
1137 end
1138 end
1139 end
1140 if precursor_ret_type != null then
1141 if ret_type == null then
1142 # Inherit the return type
1143 ret_type = precursor_ret_type
1144 else if not ret_type.is_subtype(mmodule, mclassdef.bound_mtype, precursor_ret_type) then
1145 var node: ANode
1146 if nsig != null then node = nsig else node = self
1147 modelbuilder.error(node, "Redef Error: Wrong return type. found {ret_type}, expected {precursor_ret_type}.")
1148 end
1149 end
1150 end
1151 end
1152 end
1153
1154 redef class ATypePropdef
1155 redef type MPROPDEF: MVirtualTypeDef
1156
1157 redef fun build_property(modelbuilder, mclassdef)
1158 do
1159 var name = self.n_id.text
1160 var mprop = modelbuilder.try_get_mproperty_by_name(self.n_id, mclassdef, name)
1161 if mprop == null then
1162 var mvisibility = new_property_visibility(modelbuilder, mclassdef, self.n_visibility)
1163 mprop = new MVirtualTypeProp(mclassdef, name, mvisibility)
1164 for c in name.chars do if c >= 'a' and c<= 'z' then
1165 modelbuilder.warning(n_id, "bad-type-name", "Warning: lowercase in the virtual type {name}")
1166 break
1167 end
1168 if not self.check_redef_keyword(modelbuilder, mclassdef, self.n_kwredef, false, mprop) then return
1169 else
1170 if not self.check_redef_keyword(modelbuilder, mclassdef, self.n_kwredef, true, mprop) then return
1171 assert mprop isa MVirtualTypeProp
1172 check_redef_property_visibility(modelbuilder, self.n_visibility, mprop)
1173 end
1174 mclassdef.mprop2npropdef[mprop] = self
1175
1176 var mpropdef = new MVirtualTypeDef(mclassdef, mprop, self.location)
1177 self.mpropdef = mpropdef
1178 modelbuilder.mpropdef2npropdef[mpropdef] = self
1179 if mpropdef.is_intro then
1180 modelbuilder.toolcontext.info("{mpropdef} introduces new type {mprop.full_name}", 4)
1181 else
1182 modelbuilder.toolcontext.info("{mpropdef} redefines type {mprop.full_name}", 4)
1183 end
1184 set_doc(mpropdef, modelbuilder)
1185
1186 var atfixed = get_single_annotation("fixed", modelbuilder)
1187 if atfixed != null then
1188 mpropdef.is_fixed = true
1189 end
1190 end
1191
1192 redef fun build_signature(modelbuilder)
1193 do
1194 var mpropdef = self.mpropdef
1195 if mpropdef == null then return # Error thus skipped
1196 var mclassdef = mpropdef.mclassdef
1197 var mmodule = mclassdef.mmodule
1198 var mtype: nullable MType = null
1199
1200 var ntype = self.n_type
1201 mtype = modelbuilder.resolve_mtype(mmodule, mclassdef, ntype)
1202 if mtype == null then return
1203
1204 mpropdef.bound = mtype
1205 # print "{mpropdef}: {mtype}"
1206 end
1207
1208 redef fun check_signature(modelbuilder)
1209 do
1210 var mpropdef = self.mpropdef
1211 if mpropdef == null then return # Error thus skipped
1212
1213 var bound = self.mpropdef.bound
1214 if bound == null then return # Error thus skipped
1215
1216 modelbuilder.check_visibility(n_type, bound, mpropdef)
1217
1218 var mclassdef = mpropdef.mclassdef
1219 var mmodule = mclassdef.mmodule
1220 var anchor = mclassdef.bound_mtype
1221
1222 # Check circularity
1223 if bound isa MVirtualType then
1224 # Slow case: progress on each resolution until: (i) we loop, or (ii) we found a non formal type
1225 var seen = [self.mpropdef.mproperty.mvirtualtype]
1226 loop
1227 if seen.has(bound) then
1228 seen.add(bound)
1229 modelbuilder.error(self, "Error: circularity of virtual type definition: {seen.join(" -> ")}")
1230 return
1231 end
1232 seen.add(bound)
1233 var next = bound.lookup_bound(mmodule, anchor)
1234 if not next isa MVirtualType then break
1235 bound = next
1236 end
1237 end
1238
1239 # Check redefinitions
1240 bound = mpropdef.bound.as(not null)
1241 for p in mpropdef.mproperty.lookup_super_definitions(mmodule, anchor) do
1242 var supbound = p.bound
1243 if supbound == null then break # broken super bound, skip error
1244 if p.is_fixed then
1245 modelbuilder.error(self, "Redef Error: Virtual type {mpropdef.mproperty} is fixed in super-class {p.mclassdef.mclass}")
1246 break
1247 end
1248 if p.mclassdef.mclass == mclassdef.mclass then
1249 # Still a warning to pass existing bad code
1250 modelbuilder.warning(n_type, "refine-type", "Redef Error: a virtual type cannot be refined.")
1251 break
1252 end
1253 if not bound.is_subtype(mmodule, anchor, supbound) then
1254 modelbuilder.error(n_type, "Redef Error: Wrong bound type. Found {bound}, expected a subtype of {supbound}, as in {p}.")
1255 break
1256 end
1257 end
1258 end
1259 end