modelize: prevent the use of `lazy` on methods
[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
625 # Build a visited signature
626 fun build_signature(modelbuilder: ModelBuilder): nullable MSignature
627 do
628 if param_names.length != param_types.length then
629 # Some parameters are typed, other parameters are not typed.
630 modelbuilder.error(self.n_params[param_types.length], "Error: Untyped parameter `{param_names[param_types.length]}'.")
631 return null
632 end
633
634 var mparameters = new Array[MParameter]
635 for i in [0..param_names.length[ do
636 var mparameter = new MParameter(param_names[i], param_types[i], i == vararg_rank)
637 self.n_params[i].mparameter = mparameter
638 mparameters.add(mparameter)
639 end
640
641 var msignature = new MSignature(mparameters, ret_type)
642 return msignature
643 end
644 end
645
646 redef class AParam
647 # The associated mparameter if any
648 var mparameter: nullable MParameter = null
649 end
650
651 redef class AMethPropdef
652 redef type MPROPDEF: MMethodDef
653
654
655 # Can self be used as a root init?
656 private fun look_like_a_root_init(modelbuilder: ModelBuilder, mclassdef: MClassDef): Bool
657 do
658 # Need the `init` keyword
659 if n_kwinit == null then return false
660 # Need to by anonymous
661 if self.n_methid != null then return false
662 # No annotation on itself
663 if get_single_annotation("old_style_init", modelbuilder) != null then return false
664 # Nor on its module
665 var amod = self.parent.parent.as(AModule)
666 var amoddecl = amod.n_moduledecl
667 if amoddecl != null then
668 var old = amoddecl.get_single_annotation("old_style_init", modelbuilder)
669 if old != null then return false
670 end
671 # No parameters
672 if self.n_signature.n_params.length > 0 then
673 modelbuilder.advice(self, "old-init", "Warning: init with signature in {mclassdef}")
674 return false
675 end
676 # Cannot be private or something
677 if not self.n_visibility isa APublicVisibility then
678 modelbuilder.advice(self, "old-init", "Warning: non-public init in {mclassdef}")
679 return false
680 end
681
682 return true
683 end
684
685 redef fun build_property(modelbuilder, mclassdef)
686 do
687 var n_kwinit = n_kwinit
688 var n_kwnew = n_kwnew
689 var is_init = n_kwinit != null or n_kwnew != null
690 var name: String
691 var amethodid = self.n_methid
692 var name_node: ANode
693 if amethodid == null then
694 if not is_init then
695 name = "main"
696 name_node = self
697 else if n_kwinit != null then
698 name = "init"
699 name_node = n_kwinit
700 else if n_kwnew != null then
701 name = "new"
702 name_node = n_kwnew
703 else
704 abort
705 end
706 else if amethodid isa AIdMethid then
707 name = amethodid.n_id.text
708 name_node = amethodid
709 else
710 # operator, bracket or assign
711 name = amethodid.collect_text
712 name_node = amethodid
713
714 if name == "-" and self.n_signature.n_params.length == 0 then
715 name = "unary -"
716 end
717 end
718
719 var look_like_a_root_init = look_like_a_root_init(modelbuilder, mclassdef)
720 var mprop: nullable MMethod = null
721 if not is_init or n_kwredef != null then mprop = modelbuilder.try_get_mproperty_by_name(name_node, mclassdef, name).as(nullable MMethod)
722 if mprop == null and look_like_a_root_init then
723 mprop = modelbuilder.the_root_init_mmethod
724 var nb = n_block
725 if nb isa ABlockExpr and nb.n_expr.is_empty and n_doc == null then
726 modelbuilder.advice(self, "useless-init", "Warning: useless empty init in {mclassdef}")
727 end
728 end
729 if mprop == null then
730 var mvisibility = new_property_visibility(modelbuilder, mclassdef, self.n_visibility)
731 mprop = new MMethod(mclassdef, name, mvisibility)
732 if look_like_a_root_init and modelbuilder.the_root_init_mmethod == null then
733 modelbuilder.the_root_init_mmethod = mprop
734 mprop.is_root_init = true
735 end
736 mprop.is_init = is_init
737 mprop.is_new = n_kwnew != null
738 if parent isa ATopClassdef then mprop.is_toplevel = true
739 self.check_redef_keyword(modelbuilder, mclassdef, n_kwredef, false, mprop)
740 else
741 if not self.check_redef_keyword(modelbuilder, mclassdef, n_kwredef, not self isa AMainMethPropdef, mprop) then return
742 check_redef_property_visibility(modelbuilder, self.n_visibility, mprop)
743 end
744
745 # Check name conflicts in the local class for constructors.
746 if is_init then
747 for p, n in mclassdef.mprop2npropdef do
748 if p != mprop and p isa MMethod and p.name == name then
749 check_redef_keyword(modelbuilder, mclassdef, n_kwredef, false, p)
750 break
751 end
752 end
753 end
754
755 mclassdef.mprop2npropdef[mprop] = self
756
757 var mpropdef = new MMethodDef(mclassdef, mprop, self.location)
758
759 set_doc(mpropdef, modelbuilder)
760
761 self.mpropdef = mpropdef
762 modelbuilder.mpropdef2npropdef[mpropdef] = self
763 if mpropdef.is_intro then
764 modelbuilder.toolcontext.info("{mpropdef} introduces new method {mprop.full_name}", 4)
765 else
766 modelbuilder.toolcontext.info("{mpropdef} redefines method {mprop.full_name}", 4)
767 end
768 end
769
770 redef fun build_signature(modelbuilder)
771 do
772 var mpropdef = self.mpropdef
773 if mpropdef == null then return # Error thus skiped
774 var mclassdef = mpropdef.mclassdef
775 var mmodule = mclassdef.mmodule
776 var nsig = self.n_signature
777
778 if mpropdef.mproperty.is_root_init and not mclassdef.is_intro then
779 var root_init = mclassdef.mclass.root_init
780 if root_init != null then
781 # Inherit the initializers by refinement
782 mpropdef.new_msignature = root_init.new_msignature
783 assert mpropdef.initializers.is_empty
784 mpropdef.initializers.add_all root_init.initializers
785 end
786 end
787
788 # Retrieve info from the signature AST
789 var param_names = new Array[String] # Names of parameters from the AST
790 var param_types = new Array[MType] # Types of parameters from the AST
791 var vararg_rank = -1
792 var ret_type: nullable MType = null # Return type from the AST
793 if nsig != null then
794 if not nsig.visit_signature(modelbuilder, mclassdef) then return
795 param_names = nsig.param_names
796 param_types = nsig.param_types
797 vararg_rank = nsig.vararg_rank
798 ret_type = nsig.ret_type
799 end
800
801 # Look for some signature to inherit
802 # FIXME: do not inherit from the intro, but from the most specific
803 var msignature: nullable MSignature = null
804 if not mpropdef.is_intro then
805 msignature = mpropdef.mproperty.intro.msignature
806 if msignature == null then return # Skip error
807
808 # The local signature is adapted to use the local formal types, if any.
809 msignature = msignature.resolve_for(mclassdef.mclass.mclass_type, mclassdef.bound_mtype, mmodule, false)
810
811 # Check inherited signature arity
812 if param_names.length != msignature.arity then
813 var node: ANode
814 if nsig != null then node = nsig else node = self
815 modelbuilder.error(node, "Redef error: {mpropdef} redefines {mpropdef.mproperty.intro} with {param_names.length} parameter(s), {msignature.arity} expected. Signature is {mpropdef}{msignature}")
816 return
817 end
818 else if mpropdef.mproperty.is_init and not mpropdef.mproperty.is_new then
819 # FIXME UGLY: inherit signature from a super-constructor
820 for msupertype in mclassdef.supertypes do
821 msupertype = msupertype.anchor_to(mmodule, mclassdef.bound_mtype)
822 var candidate = modelbuilder.try_get_mproperty_by_name2(self, mmodule, msupertype, mpropdef.mproperty.name)
823 if candidate != null then
824 if msignature == null then
825 msignature = candidate.intro.as(MMethodDef).msignature
826 end
827 end
828 end
829 end
830
831
832 # Inherit the signature
833 if msignature != null and param_names.length != param_types.length and param_names.length == msignature.arity and param_types.length == 0 then
834 # Parameters are untyped, thus inherit them
835 param_types = new Array[MType]
836 for mparameter in msignature.mparameters do
837 param_types.add(mparameter.mtype)
838 end
839 vararg_rank = msignature.vararg_rank
840 end
841 if msignature != null and ret_type == null then
842 ret_type = msignature.return_mtype
843 end
844
845 if param_names.length != param_types.length then
846 # Some parameters are typed, other parameters are not typed.
847 modelbuilder.error(nsig.n_params[param_types.length], "Error: Untyped parameter `{param_names[param_types.length]}'.")
848 return
849 end
850
851 var mparameters = new Array[MParameter]
852 for i in [0..param_names.length[ do
853 var mparameter = new MParameter(param_names[i], param_types[i], i == vararg_rank)
854 if nsig != null then nsig.n_params[i].mparameter = mparameter
855 mparameters.add(mparameter)
856 end
857
858 # In `new`-factories, the return type is by default the classtype.
859 if ret_type == null and mpropdef.mproperty.is_new then ret_type = mclassdef.mclass.mclass_type
860
861 msignature = new MSignature(mparameters, ret_type)
862 mpropdef.msignature = msignature
863 mpropdef.is_abstract = self.get_single_annotation("abstract", modelbuilder) != null
864 mpropdef.is_intern = self.get_single_annotation("intern", modelbuilder) != null
865 mpropdef.is_extern = self.n_extern_code_block != null or self.get_single_annotation("extern", modelbuilder) != null
866
867 # Check annotations
868 var at = self.get_single_annotation("lazy", modelbuilder)
869 if at != null then modelbuilder.error(at, "Syntax error: `lazy` must be used on attributes.")
870 end
871
872 redef fun check_signature(modelbuilder)
873 do
874 var mpropdef = self.mpropdef
875 if mpropdef == null then return # Error thus skiped
876 var mclassdef = mpropdef.mclassdef
877 var mmodule = mclassdef.mmodule
878 var nsig = self.n_signature
879 var mysignature = self.mpropdef.msignature
880 if mysignature == null then return # Error thus skiped
881
882 # Lookup for signature in the precursor
883 # FIXME all precursors should be considered
884 if not mpropdef.is_intro then
885 var msignature = mpropdef.mproperty.intro.msignature
886 if msignature == null then return
887
888 var precursor_ret_type = msignature.return_mtype
889 var ret_type = mysignature.return_mtype
890 if ret_type != null and precursor_ret_type == null then
891 modelbuilder.error(nsig.n_type.as(not null), "Redef Error: {mpropdef.mproperty} is a procedure, not a function.")
892 return
893 end
894
895 if mysignature.arity > 0 then
896 # Check parameters types
897 for i in [0..mysignature.arity[ do
898 var myt = mysignature.mparameters[i].mtype
899 var prt = msignature.mparameters[i].mtype
900 var node = nsig.n_params[i]
901 if not modelbuilder.check_sametype(node, mmodule, mclassdef.bound_mtype, myt, prt) then
902 modelbuilder.error(node, "Redef Error: Wrong type for parameter `{mysignature.mparameters[i].name}'. found {myt}, expected {prt} as in {mpropdef.mproperty.intro}.")
903 end
904 end
905 end
906 if precursor_ret_type != null then
907 var node: nullable ANode = null
908 if nsig != null then node = nsig.n_type
909 if node == null then node = self
910 if ret_type == null then
911 # Inherit the return type
912 ret_type = precursor_ret_type
913 else if not modelbuilder.check_subtype(node, mmodule, mclassdef.bound_mtype, ret_type, precursor_ret_type) then
914 modelbuilder.error(node, "Redef Error: Wrong return type. found {ret_type}, expected {precursor_ret_type} as in {mpropdef.mproperty.intro}.")
915 end
916 end
917 end
918
919 if mysignature.arity > 0 then
920 # Check parameters visibility
921 for i in [0..mysignature.arity[ do
922 var nt = nsig.n_params[i].n_type
923 if nt != null then modelbuilder.check_visibility(nt, nt.mtype.as(not null), mpropdef)
924 end
925 var nt = nsig.n_type
926 if nt != null then modelbuilder.check_visibility(nt, nt.mtype.as(not null), mpropdef)
927 end
928 end
929 end
930
931 redef class AAttrPropdef
932 redef type MPROPDEF: MAttributeDef
933
934 # Is the node tagged `noinit`?
935 var noinit = false
936
937 # Is the node tagged lazy?
938 var is_lazy = false
939
940 # Has the node a default value?
941 # Could be through `n_expr` or `n_block`
942 var has_value = false
943
944 # The guard associated to a lazy attribute.
945 # Because some engines does not have a working `isset`,
946 # this additional attribute is used to guard the lazy initialization.
947 # TODO: to remove once isset is correctly implemented
948 var mlazypropdef: nullable MAttributeDef
949
950 # The associated getter (read accessor) if any
951 var mreadpropdef: nullable MMethodDef is writable
952 # The associated setter (write accessor) if any
953 var mwritepropdef: nullable MMethodDef is writable
954
955 redef fun build_property(modelbuilder, mclassdef)
956 do
957 var mclass = mclassdef.mclass
958
959 var name: String
960 name = self.n_id2.text
961
962 if mclass.kind == interface_kind or mclassdef.mclass.kind == enum_kind then
963 modelbuilder.error(self, "Error: Attempt to define attribute {name} in the interface {mclass}.")
964 else if mclass.kind == enum_kind then
965 modelbuilder.error(self, "Error: Attempt to define attribute {name} in the enum class {mclass}.")
966 else if mclass.kind == extern_kind then
967 modelbuilder.error(self, "Error: Attempt to define attribute {name} in the extern class {mclass}.")
968 end
969
970 # New attribute style
971 var nid2 = self.n_id2
972 var mprop = new MAttribute(mclassdef, "_" + name, private_visibility)
973 var mpropdef = new MAttributeDef(mclassdef, mprop, self.location)
974 self.mpropdef = mpropdef
975 modelbuilder.mpropdef2npropdef[mpropdef] = self
976
977 var readname = name
978 var mreadprop = modelbuilder.try_get_mproperty_by_name(nid2, mclassdef, readname).as(nullable MMethod)
979 if mreadprop == null then
980 var mvisibility = new_property_visibility(modelbuilder, mclassdef, self.n_visibility)
981 mreadprop = new MMethod(mclassdef, readname, mvisibility)
982 if not self.check_redef_keyword(modelbuilder, mclassdef, n_kwredef, false, mreadprop) then return
983 mreadprop.deprecation = mprop.deprecation
984 else
985 if not self.check_redef_keyword(modelbuilder, mclassdef, n_kwredef, true, mreadprop) then return
986 check_redef_property_visibility(modelbuilder, self.n_visibility, mreadprop)
987 end
988 mclassdef.mprop2npropdef[mreadprop] = self
989
990 var mreadpropdef = new MMethodDef(mclassdef, mreadprop, self.location)
991 self.mreadpropdef = mreadpropdef
992 modelbuilder.mpropdef2npropdef[mreadpropdef] = self
993 set_doc(mreadpropdef, modelbuilder)
994 mpropdef.mdoc = mreadpropdef.mdoc
995
996 has_value = n_expr != null or n_block != null
997
998 var atnoinit = self.get_single_annotation("noinit", modelbuilder)
999 if atnoinit == null then atnoinit = self.get_single_annotation("noautoinit", modelbuilder)
1000 if atnoinit != null then
1001 noinit = true
1002 if has_value then
1003 modelbuilder.error(atnoinit, "Error: `noautoinit` attributes cannot have an initial value")
1004 return
1005 end
1006 end
1007
1008 var atlazy = self.get_single_annotation("lazy", modelbuilder)
1009 var atautoinit = self.get_single_annotation("autoinit", modelbuilder)
1010 if atlazy != null or atautoinit != null then
1011 if atlazy != null and atautoinit != null then
1012 modelbuilder.error(atlazy, "Error: lazy incompatible with autoinit")
1013 return
1014 end
1015 if not has_value then
1016 if atlazy != null then
1017 modelbuilder.error(atlazy, "Error: a lazy attribute needs a value")
1018 else if atautoinit != null then
1019 modelbuilder.error(atautoinit, "Error: a autoinit attribute needs a value")
1020 end
1021 return
1022 end
1023 is_lazy = true
1024 var mlazyprop = new MAttribute(mclassdef, "lazy _" + name, none_visibility)
1025 var mlazypropdef = new MAttributeDef(mclassdef, mlazyprop, self.location)
1026 self.mlazypropdef = mlazypropdef
1027 end
1028
1029 var atreadonly = self.get_single_annotation("readonly", modelbuilder)
1030 if atreadonly != null then
1031 if not has_value then
1032 modelbuilder.error(atreadonly, "Error: a readonly attribute needs a value")
1033 end
1034 # No setter, so just leave
1035 return
1036 end
1037
1038 var writename = name + "="
1039 var atwritable = self.get_single_annotation("writable", modelbuilder)
1040 if atwritable != null then
1041 if not atwritable.n_args.is_empty then
1042 writename = atwritable.arg_as_id(modelbuilder) or else writename
1043 end
1044 end
1045 var mwriteprop = modelbuilder.try_get_mproperty_by_name(nid2, mclassdef, writename).as(nullable MMethod)
1046 var nwkwredef: nullable Token = null
1047 if atwritable != null then nwkwredef = atwritable.n_kwredef
1048 if mwriteprop == null then
1049 var mvisibility
1050 if atwritable != null then
1051 mvisibility = new_property_visibility(modelbuilder, mclassdef, atwritable.n_visibility)
1052 else
1053 mvisibility = private_visibility
1054 end
1055 mwriteprop = new MMethod(mclassdef, writename, mvisibility)
1056 if not self.check_redef_keyword(modelbuilder, mclassdef, nwkwredef, false, mwriteprop) then return
1057 mwriteprop.deprecation = mprop.deprecation
1058 else
1059 if not self.check_redef_keyword(modelbuilder, mclassdef, nwkwredef or else n_kwredef, true, mwriteprop) then return
1060 if atwritable != null then
1061 check_redef_property_visibility(modelbuilder, atwritable.n_visibility, mwriteprop)
1062 end
1063 end
1064 mclassdef.mprop2npropdef[mwriteprop] = self
1065
1066 var mwritepropdef = new MMethodDef(mclassdef, mwriteprop, self.location)
1067 self.mwritepropdef = mwritepropdef
1068 modelbuilder.mpropdef2npropdef[mwritepropdef] = self
1069 mwritepropdef.mdoc = mpropdef.mdoc
1070 end
1071
1072 redef fun build_signature(modelbuilder)
1073 do
1074 var mpropdef = self.mpropdef
1075 if mpropdef == null then return # Error thus skipped
1076 var mclassdef = mpropdef.mclassdef
1077 var mmodule = mclassdef.mmodule
1078 var mtype: nullable MType = null
1079
1080 var mreadpropdef = self.mreadpropdef
1081
1082 var ntype = self.n_type
1083 if ntype != null then
1084 mtype = modelbuilder.resolve_mtype(mmodule, mclassdef, ntype)
1085 if mtype == null then return
1086 end
1087
1088 var inherited_type: nullable MType = null
1089 # Inherit the type from the getter (usually an abstract getter)
1090 if mreadpropdef != null and not mreadpropdef.is_intro then
1091 var msignature = mreadpropdef.mproperty.intro.msignature
1092 if msignature == null then return # Error, thus skipped
1093 inherited_type = msignature.return_mtype
1094 if inherited_type != null then
1095 # The inherited type is adapted to use the local formal types, if any.
1096 inherited_type = inherited_type.resolve_for(mclassdef.mclass.mclass_type, mclassdef.bound_mtype, mmodule, false)
1097 if mtype == null then mtype = inherited_type
1098 end
1099 end
1100
1101 var nexpr = self.n_expr
1102 if mtype == null then
1103 if nexpr != null then
1104 if nexpr isa ANewExpr then
1105 mtype = modelbuilder.resolve_mtype(mmodule, mclassdef, nexpr.n_type)
1106 else if nexpr isa AIntExpr then
1107 var cla = modelbuilder.try_get_mclass_by_name(nexpr, mmodule, "Int")
1108 if cla != null then mtype = cla.mclass_type
1109 else if nexpr isa AFloatExpr then
1110 var cla = modelbuilder.try_get_mclass_by_name(nexpr, mmodule, "Float")
1111 if cla != null then mtype = cla.mclass_type
1112 else if nexpr isa ACharExpr then
1113 var cla = modelbuilder.try_get_mclass_by_name(nexpr, mmodule, "Char")
1114 if cla != null then mtype = cla.mclass_type
1115 else if nexpr isa ABoolExpr then
1116 var cla = modelbuilder.try_get_mclass_by_name(nexpr, mmodule, "Bool")
1117 if cla != null then mtype = cla.mclass_type
1118 else if nexpr isa ASuperstringExpr then
1119 var cla = modelbuilder.try_get_mclass_by_name(nexpr, mmodule, "String")
1120 if cla != null then mtype = cla.mclass_type
1121 else if nexpr isa AStringFormExpr then
1122 var cla = modelbuilder.try_get_mclass_by_name(nexpr, mmodule, "String")
1123 if cla != null then mtype = cla.mclass_type
1124 else
1125 modelbuilder.error(self, "Error: Untyped attribute {mpropdef}. Implicit typing allowed only for literals and new.")
1126 end
1127
1128 if mtype == null then return
1129 end
1130 else if ntype != null and inherited_type == mtype then
1131 if nexpr isa ANewExpr then
1132 var xmtype = modelbuilder.resolve_mtype(mmodule, mclassdef, nexpr.n_type)
1133 if xmtype == mtype then
1134 modelbuilder.advice(ntype, "useless-type", "Warning: useless type definition")
1135 end
1136 end
1137 end
1138
1139 if mtype == null then
1140 modelbuilder.error(self, "Error: Untyped attribute {mpropdef}")
1141 return
1142 end
1143
1144 mpropdef.static_mtype = mtype
1145
1146 if mreadpropdef != null then
1147 var msignature = new MSignature(new Array[MParameter], mtype)
1148 mreadpropdef.msignature = msignature
1149 end
1150
1151 var mwritepropdef = self.mwritepropdef
1152 if mwritepropdef != null then
1153 var name: String
1154 name = n_id2.text
1155 var mparameter = new MParameter(name, mtype, false)
1156 var msignature = new MSignature([mparameter], null)
1157 mwritepropdef.msignature = msignature
1158 end
1159
1160 var mlazypropdef = self.mlazypropdef
1161 if mlazypropdef != null then
1162 mlazypropdef.static_mtype = modelbuilder.model.get_mclasses_by_name("Bool").first.mclass_type
1163 end
1164 end
1165
1166 redef fun check_signature(modelbuilder)
1167 do
1168 var mpropdef = self.mpropdef
1169 if mpropdef == null then return # Error thus skipped
1170 var ntype = self.n_type
1171 var mtype = self.mpropdef.static_mtype
1172 if mtype == null then return # Error thus skipped
1173
1174 # Lookup for signature in the precursor
1175 # FIXME all precursors should be considered
1176 if not mpropdef.is_intro then
1177 var precursor_type = mpropdef.mproperty.intro.static_mtype
1178 if precursor_type == null then return
1179
1180 if mtype != precursor_type then
1181 modelbuilder.error(ntype.as(not null), "Redef Error: Wrong static type. found {mtype}, expected {precursor_type}.")
1182 return
1183 end
1184 end
1185
1186 # Check getter and setter
1187 var meth = self.mreadpropdef
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 meth = self.mwritepropdef
1195 if meth != null then
1196 self.check_method_signature(modelbuilder, meth)
1197 var node: nullable ANode = ntype
1198 if node == null then node = self
1199 modelbuilder.check_visibility(node, mtype, meth)
1200 end
1201 end
1202
1203 private fun check_method_signature(modelbuilder: ModelBuilder, mpropdef: MMethodDef)
1204 do
1205 var mclassdef = mpropdef.mclassdef
1206 var mmodule = mclassdef.mmodule
1207 var nsig = self.n_type
1208 var mysignature = mpropdef.msignature
1209 if mysignature == null then return # Error thus skiped
1210
1211 # Lookup for signature in the precursor
1212 # FIXME all precursors should be considered
1213 if not mpropdef.is_intro then
1214 var msignature = mpropdef.mproperty.intro.msignature
1215 if msignature == null then return
1216
1217 if mysignature.arity != msignature.arity then
1218 var node: ANode
1219 if nsig != null then node = nsig else node = self
1220 modelbuilder.error(node, "Redef Error: {mysignature.arity} parameters found, {msignature.arity} expected. Signature is {mpropdef}{msignature}")
1221 return
1222 end
1223 var precursor_ret_type = msignature.return_mtype
1224 var ret_type = mysignature.return_mtype
1225 if ret_type != null and precursor_ret_type == null then
1226 var node: ANode
1227 if nsig != null then node = nsig else node = self
1228 modelbuilder.error(node, "Redef Error: {mpropdef.mproperty} is a procedure, not a function.")
1229 return
1230 end
1231
1232 if mysignature.arity > 0 then
1233 # Check parameters types
1234 for i in [0..mysignature.arity[ do
1235 var myt = mysignature.mparameters[i].mtype
1236 var prt = msignature.mparameters[i].mtype
1237 var node: ANode
1238 if nsig != null then node = nsig else node = self
1239 if not modelbuilder.check_sametype(node, mmodule, mclassdef.bound_mtype, myt, prt) then
1240 modelbuilder.error(node, "Redef Error: Wrong type for parameter `{mysignature.mparameters[i].name}'. found {myt}, expected {prt}.")
1241 end
1242 end
1243 end
1244 if precursor_ret_type != null then
1245 var node: ANode
1246 if nsig != null then node = nsig else node = self
1247 if ret_type == null then
1248 # Inherit the return type
1249 ret_type = precursor_ret_type
1250 else if not modelbuilder.check_subtype(node, mmodule, mclassdef.bound_mtype, ret_type, precursor_ret_type) then
1251 modelbuilder.error(node, "Redef Error: Wrong return type. found {ret_type}, expected {precursor_ret_type}.")
1252 end
1253 end
1254 end
1255 end
1256 end
1257
1258 redef class ATypePropdef
1259 redef type MPROPDEF: MVirtualTypeDef
1260
1261 redef fun build_property(modelbuilder, mclassdef)
1262 do
1263 var name = self.n_id.text
1264 var mprop = modelbuilder.try_get_mproperty_by_name(self.n_id, mclassdef, name)
1265 if mprop == null then
1266 var mvisibility = new_property_visibility(modelbuilder, mclassdef, self.n_visibility)
1267 mprop = new MVirtualTypeProp(mclassdef, name, mvisibility)
1268 for c in name.chars do if c >= 'a' and c<= 'z' then
1269 modelbuilder.warning(n_id, "bad-type-name", "Warning: lowercase in the virtual type {name}")
1270 break
1271 end
1272 if not self.check_redef_keyword(modelbuilder, mclassdef, self.n_kwredef, false, mprop) then return
1273 else
1274 if not self.check_redef_keyword(modelbuilder, mclassdef, self.n_kwredef, true, mprop) then return
1275 assert mprop isa MVirtualTypeProp
1276 check_redef_property_visibility(modelbuilder, self.n_visibility, mprop)
1277 end
1278 mclassdef.mprop2npropdef[mprop] = self
1279
1280 var mpropdef = new MVirtualTypeDef(mclassdef, mprop, self.location)
1281 self.mpropdef = mpropdef
1282 modelbuilder.mpropdef2npropdef[mpropdef] = self
1283 if mpropdef.is_intro then
1284 modelbuilder.toolcontext.info("{mpropdef} introduces new type {mprop.full_name}", 4)
1285 else
1286 modelbuilder.toolcontext.info("{mpropdef} redefines type {mprop.full_name}", 4)
1287 end
1288 set_doc(mpropdef, modelbuilder)
1289
1290 var atfixed = get_single_annotation("fixed", modelbuilder)
1291 if atfixed != null then
1292 mpropdef.is_fixed = true
1293 end
1294 end
1295
1296 redef fun build_signature(modelbuilder)
1297 do
1298 var mpropdef = self.mpropdef
1299 if mpropdef == null then return # Error thus skipped
1300 var mclassdef = mpropdef.mclassdef
1301 var mmodule = mclassdef.mmodule
1302 var mtype: nullable MType = null
1303
1304 var ntype = self.n_type
1305 mtype = modelbuilder.resolve_mtype(mmodule, mclassdef, ntype)
1306 if mtype == null then return
1307
1308 mpropdef.bound = mtype
1309 # print "{mpropdef}: {mtype}"
1310 end
1311
1312 redef fun check_signature(modelbuilder)
1313 do
1314 var mpropdef = self.mpropdef
1315 if mpropdef == null then return # Error thus skipped
1316
1317 var bound = self.mpropdef.bound
1318 if bound == null then return # Error thus skipped
1319
1320 modelbuilder.check_visibility(n_type, bound, mpropdef)
1321
1322 var mclassdef = mpropdef.mclassdef
1323 var mmodule = mclassdef.mmodule
1324 var anchor = mclassdef.bound_mtype
1325
1326 # Check circularity
1327 if bound isa MVirtualType then
1328 # Slow case: progress on each resolution until: (i) we loop, or (ii) we found a non formal type
1329 var seen = [self.mpropdef.mproperty.mvirtualtype]
1330 loop
1331 if seen.has(bound) then
1332 seen.add(bound)
1333 modelbuilder.error(self, "Error: circularity of virtual type definition: {seen.join(" -> ")}")
1334 return
1335 end
1336 seen.add(bound)
1337 var next = bound.lookup_bound(mmodule, anchor)
1338 if not next isa MVirtualType then break
1339 bound = next
1340 end
1341 end
1342
1343 # Check redefinitions
1344 bound = mpropdef.bound.as(not null)
1345 for p in mpropdef.mproperty.lookup_super_definitions(mmodule, anchor) do
1346 var supbound = p.bound
1347 if supbound == null then break # broken super bound, skip error
1348 if p.is_fixed then
1349 modelbuilder.error(self, "Redef Error: Virtual type {mpropdef.mproperty} is fixed in super-class {p.mclassdef.mclass}")
1350 break
1351 end
1352 if p.mclassdef.mclass == mclassdef.mclass then
1353 # Still a warning to pass existing bad code
1354 modelbuilder.warning(n_type, "refine-type", "Redef Error: a virtual type cannot be refined.")
1355 break
1356 end
1357 if not modelbuilder.check_subtype(n_type, mmodule, anchor, bound, supbound) then
1358 modelbuilder.error(n_type, "Redef Error: Wrong bound type. Found {bound}, expected a subtype of {supbound}, as in {p}.")
1359 break
1360 end
1361 end
1362 end
1363 end