Skip to main content

Questions tagged [specification]

-2 votes
2 answers
272 views

In the C standard, there's this: A parameter in the replacement list, ..., is replaced by the corresponding argument after all macros contained therein have been expanded. It's in Section 6.10.x.x, ...
DannyNiu's user avatar
  • 467
23 votes
3 answers
4k views

Recently a team of Rust developers have started working on the Rust specification. This RFC 3355 introduced the proposal. My question is that basically what's the difference between a spec and a ...
Amir reza Riahi's user avatar
3 votes
1 answer
663 views

The ECMAScript specification and its drafts are very accessible, but they're formatted a bit oddly -- case in point, the current version of the ToBigInt abstract operation uses three fonts: The base (...
Bbrk24's user avatar
  • 9,672
4 votes
2 answers
464 views

I want to specify in my grammar that an identifier could be any character except for a list of characters (that is have a deny list instead of the most common allow list). I've seen the common ...
OscarRyz's user avatar
  • 199
10 votes
4 answers
306 views

I have a working interpreter for my language Trilangle, and I have a decent but informal grasp of the language's semantics. Though I've alluded to undefined behavior and a difference between what the ...
Bbrk24's user avatar
  • 9,672
4 votes
6 answers
482 views

I have thought about how I could specify an expression separate from a statement. A fragment of code that resolves to a value. But void expressions are still ...
CPlus's user avatar
  • 10.5k