wasp icon indicating copy to clipboard operation
wasp copied to clipboard

Todos

Open pannous opened this issue 2 years ago โ€ข 1 comments

random todos

The middle dot ยท (\cdotp U+00b7) and the Greek interpunct ฮ‡ (U+0387) are now treated as equivalent to the dot operator โ‹… (\cdot U+22c5) (#25157).

pannous avatar Nov 16 '21 09:11 pannous

function, caller and arguments meta information accessible on demand

fun (a): 
  print arguments#1
  print function.name
  print caller
  print function.code

fun a:x+2  // =>
a:x+2 
"fun"
root context

accessible at compile time

Like creating implicit CallerArgumentExpression https://weblogs.asp.net/dixin/csharp-10-new-feature-callerargumentexpression-argument-check-and-more

pannous avatar Nov 16 '21 09:11 pannous