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