sq / JSIL

CIL to Javascript Compiler

Home Page:http://jsil.org/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Attribute properties are missing

CoffeeParser opened this issue · comments

JSIL does not include attribute properties in the output... example:

C#
[ProtoMember(3, AsReference = true)]

JSIL
.Attribute($asm10.TypeRef("ProtoBuf.ProtoMemberAttribute"), function () { return [3]; });

  1. Is there a possibility to include the AsReference=true into the JSIL generated output?
  2. Where do I have to look?