You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
We have just released Metalama 2023.0.102-rc with the following improvements:
CHANGES
BREAKING! Redesign and simplification of the invoker API.
method.Invokers.Final.Invoke( meta.This, a, b )
usemethod.Invoke( a, b )
(this
is now the default target),method.Invokers.Final.Invoke( a, b, c )
usemethod.With( a ).Invoke( b, c )
(replacesthis
bya
as the target).fieldOrProperty.Invokers.Final.GetValue( meta.This )
usefieldOrProperty.Value
.fieldOrProperty.Invokers.Final.SetValue( meta.This, value )
usefieldOrProperty.Value = value
.IFieldOrProperty.ToExpression()
andIParameter.ToExpression()
is now redundant.Expression.Capture
has been simplified.For an overview of the impact of these changes, look at this commit that updates Metalama.Samples to the new API.
IMPROVEMENTS
Contracts
msbuild.log
Aspects
Error reporting
Testing and Documentation
FIXES
Capturing crash caused deadlocks, and the dump files did not generate enough information.
Contracts
Aspects
Design Time
Beta Was this translation helpful? Give feedback.
All reactions