Can the sequence .( ever appear in C# or VB.Net code?
(Not in a string, comment, or XML literal, EDIT: or preprocessor directive)
I'm reasonably certain that the answer is no, but I'd like to make sure.
|
|
The only places that
(The ... means I have elided the remainder of the production rule.) In none of these cases is a |
|||
|
In C#, a
Note that in VB.Net this is not a concern because the region label has to be a valid string literal, so it has quotes:
It's also legal after The biggest concern, though, is that you can have any arbitrary code inside of an
In VB.Net:
It's actually worse than that, because the VB version allows arbitrary expressions so you can't know if some code is actually VB unless you evaluate the expressions. In other words, parsing alone is not sufficient -- you have to evaluate too. That said, analyzing the grammar in the C# Language Specification Version 4.0, Appendix B, the real-literal:
decimal-digits . decimal-digits exponent-partopt real-type-suffixopt
. decimal-digits exponent-partopt real-type-suffixopt
operator-or-punctuator: one of
{ } [ ] ( ) . , : ;
namespace-or-type-name:
namespace-or-type-name . identifier type-argument-listopt
member-access:
primary-expression . identifier type-argument-listopt
predefined-type . identifier type-argument-listopt
qualified-alias-member . identifier
base-access:
base . identifier
unbound-type-name:
unbound-type-name . identifier generic-dimension-specifieropt
qualified-identifier:
qualified-identifier . identifier
member-name:
interface-type . identifier
indexer-declarator:
type interface-type . this [ formal-parameter-list ]
Since a token:
operator-or-punctuator
Since Of course that still leaves comments, literals, etc. which I leave out because you already know about those. |
|||||||||||||||
|
|
No reference to the grammar and completely unscientific, but here's my guess:
Outside of comments and string literals, I think
Finally, the |
|||||||||||||||
|
|
Having perused the VB reference, I’m now confident that the answer for VB is no. VB uses the character Leaving aside XML literals, the only thing that may every appear behind a member access is an The same goes for nested name access (and, for completeness’ sake, also in As for floating point literals, the point there must be followed by at least one more digit (§1.6.3). |
|||||
|
|
On this page http://blogs.msdn.com/b/lucian/archive/2010/04/19/grammar.aspx I put a copy of the complete grammar for C#4 and VB10 in machine-readable format (EBNF & ANTLR) and human-readable (HTML). The HTML version includes the computed "may-follows" set for each token. According to this, the "may-follows" set of PERIOD does not include LPAREN in either C#4 or VB10. Unfortunately the grammars aren't quite complete. Nevertheless, within the VB/C# teams, these grammars are what we start with for a lot of our analysis. For instance...
|
|||
|
|
|
I don't think they'll add anything like this to C#, would just look plain wrong. I am not at all sure about VB.Net, though. just by looking at how they did generics, it seems that the VB.Net team doesn't have this "not looking weird" attitude. So, if you build any kind of tool that should work with future versions of those languages, better watch out for VB.Net... |
|||||||||||
|