573 Commits (87845ad51d7e52eea78bc41a8602abc346a5c0bf)

Author SHA1 Message Date
triton a1920c627a Added better support for native printing of constant sized arrays as C# fixed buffers. 13 years ago
triton 416503e23e Handle native context classes correctly by printing its internal definition. 13 years ago
triton 656e5ecf80 Use a GetCSharpSignature instead of calling CSharpSignature directly to set common data like the context kind. 13 years ago
triton b49637df93 Cosmetic changes. 13 years ago
triton 705844046f Visit the declaration by using its visit method and not the generic VisitDeclaration. 13 years ago
triton 8c111d5c76 Fixed marshaling to work with the new unsafe pointers which simplified the code a lot. 13 years ago
triton 6010459bdc Changed GetOperatorIdentifier to be a static method. 13 years ago
triton d531e40e5f Added better wrapping for out parameters. 13 years ago
triton 501157f688 Remove unused method GenerateValueTypeConstructorCall. 13 years ago
triton 589306ec14 Removed a lot of complexity when wrapping of fields to use unsafe pointers and actually use the existing marshaling logic instead of replicating it with weird manual pointer arithmetic. 13 years ago
triton 4a222b0320 Renamed GeneratedOperator to GenerateOperator. 13 years ago
triton bf35ce0f04 Simplify GetFunctionNativeIdentifier. 13 years ago
triton b41d3cfb6e Remove one-line method GenerateStructMarshaling and inline its content where it was called. 13 years ago
triton 1467c086b6 Use GenerateClassFields to generate internal class fields instead of duplicating the logic. Fixes struct inheritance handling. 13 years ago
triton 383850437e Re-use the generator CSharpTypePrinter instance in CSharpTextTemplate. 13 years ago
triton e57c435426 Fixed some incorrect behavior with nested types in the CheckAmbiguousOverloads pass by fixing GetFunctionOverloads to be dynamically dispatched instead of using some weird manual type checking. 13 years ago
triton 5037e8b6b0 Unify handling of pointers to primitive types. 13 years ago
triton 3a22b39ec0 Re-work the marshaler to make sure we visit the canonical Type and Decl overloads and do proper type map handling. 13 years ago
triton 392843cf9b Instead of failing to generate methods with not found symbols, use a fallback "SymbolNotFound" symbol which at least makes the generated wrappers compile. 13 years ago
triton 3da1199e3d Fixed generation of static methods by processing it right in the parser and generator. 13 years ago
triton ffb1725538 Use a fully-qualified name when generating class bases to fix name conflicts. 13 years ago
triton 6c2e73372e Process classes as declaration contexts too making sure we generate nested declarations like typedefs, enums and classes. 13 years ago
triton 74404222c2 Unify the namespace and declaration context handling. 13 years ago
triton e57e22e3b8 Wrap the Instance identifier name into its own property and change the code to use it. 13 years ago
triton 69cd09188f Implement type printing for template parameter substitution types. 13 years ago
triton 29baef2f82 Wrap pointer to primitives as IntPtr regardless of the type. 13 years ago
triton 4025689211 Use GetNestedQualifiedName to properly deal with nested declaration type names. 13 years ago
triton 80dd6b75c1 Fix whitespace inconsistency by needing a newline when generating functions. 13 years ago
triton 0f223f2852 Convert the GetFunctionOverloads return to a list to use IndexOf. 13 years ago
triton b32de20d65 Check if the class has a base class instead of just a base. 13 years ago
triton d1c9737d0c Search for mangled symbols for functions in addition to variables. 13 years ago
triton 8237110115 Remove the useless GeneratePInvokeMethod method. 13 years ago
triton 1be1972907 Added support for function-backed properties to the C# backends. 13 years ago
triton dd03761f6c Remove the WrapperSuffix option and replace with a more general GenerateName delegate that can be hooked up by the user to customize the output name of the generated files. 13 years ago
triton d37cca5ca1 Changed the return type of functions to be a qualified type. 13 years ago
triton 703190fe70 Fixed the wrapping of function pointers in C#. 13 years ago
triton a44901166c Check if class has a base class and not just a base. 13 years ago
triton b19057b71a C# type printing fixes. 13 years ago
triton 9e55816bfc Template type printing fixes. 13 years ago
triton d5bf0460c4 Keep track of dependent declarations and ignore them. 13 years ago
triton 9a2a0a5a5c Added better support for properties. 13 years ago
triton 6d2c342eed Added better support for substituted template parameter types. 13 years ago
triton 440ed5b92f Added better support for dependent name types. 13 years ago
triton c09e366c1e Added better support for injected class name types. 13 years ago
triton cc8f7cd1db Renamed Cxxi references to CppSharp. 13 years ago
triton 3912d4a5d9 Added improved support for C# marshaling of types. 13 years ago
triton 66a3127520 Fixed the support for static methods. 13 years ago
triton 7fb9e9438b Bunch of improvements and fixes in the generation of value types. 13 years ago
triton 74ae216826 Improvements to operator overload support. 13 years ago
triton 259aeb036d Deal correctly with base classes when generating native constructors. 13 years ago