Posted 18 years ago
by Wesner Moise
Version: 4.0.0233
Platform: .NET 2.0
Environment: Windows XP (32-bit)

You should really test out your .NET Addon C# Parser on the SSCLI source code of the .NET base class library.
Your parser has problems with attributes:
1) Attributes can be applied to each parameter in a method.
2) Attributes can be applied via attribute keywords to other parts of a method
[return: attribute]
[assembly: attribute]
etc
Secondly, I need to extend the C# Addon parser to support specifications with special comments starting with //@ or /*@.
For example,
void MyCode(int x, int y)
{
//@ require x + y == 2
}
Is there support for extending the parser (without using the blueprint license)? If not, is there support with the blueprint license.
Your parser has problems with attributes:
1) Attributes can be applied to each parameter in a method.
2) Attributes can be applied via attribute keywords to other parts of a method
[return: attribute]
[assembly: attribute]
etc
Secondly, I need to extend the C# Addon parser to support specifications with special comments starting with //@ or /*@.
For example,
void MyCode(int x, int y)
{
//@ require x + y == 2
}
Is there support for extending the parser (without using the blueprint license)? If not, is there support with the blueprint license.