Coder Social home page Coder Social logo

clrbridge's People

Contributors

marler8997 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

Forkers

laeeth chigusa0w0

clrbridge's Issues

[Bug] Error 1: Previous Definition Different

When trying to execute the step rund example.d while building the project with command rund minish.d cleanBuildAll, tons of error spawned saying Error 1: Previous Definition Different {Mangled Name Here}.

After reading the codegen source code. I found that currently clrbridge lacks of a way to handle different overloads with only non-primitive parameters have different type.

For example, for Marshal.ReadInt64, both of its two-parameter overloads become ReadInt64(__d.clr.DotNetObject, int). Thus a case of the above mentioned Error 1 occurred.

Could there be a way to identify and fix this issue?

A possible way to solve this is to generate DotNetObject_IntPtr for C# IntPtr, DotNetObject_Object for C# Object and alias this each of these DotNetObject_??? to DotNetObject so that the line __d.globalClrBridge.box!"Object" could leave unchanged.

e.g.:
ReadInt64(IntPtr, Int32) -> ReadInt64(__d.clr.DotNetObject_IntPtr, int)
ReadInt64(Object, Int32) -> ReadInt64(__d.clr.DotNetObject_Object, int)

Also worth mentioning, as you may know, not everything in C# derives from object. So, although I haven't tested this by myself, try calling some String Constructors (and other methods with pointer-type or TypedReference parameters) may cause error or unexpected behaviour, thus need to be excluded from codegen procedure.

PS. may I ask what license is applied to this project?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.