Custom Query (162 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (73 - 75 of 162)

Ticket Owner Reporter Resolution Summary
#130 dai dai fixed リンカを汎用的にする
Description

今はcore.libのみしか生成できないので、汎用的に様々な静的リンクライブラリを生成できるようにする。

そのためには、各ライブラリ間の分離処理及び結合時の名前解決のためのモジュールを実装する。

#131 dai イグトランス (egtra) fixed Superが機能しなくなっている
Description

Superを使っても基底クラスのではなく、派生クラス自身のメソッドが呼ばれてしまいます。再帰呼出となるため、(おそらく)スタックオーバーフローを起こすまでそれが続いてしまいます。

#console

Class Base
Public
	Sub Proc()
		Print "Base.Proc"
	End Sub
End Class

Class Derived
	Inherits Base
Public
	Sub Proc()
		Print "Derived.Proc"
		Super.Proc()
	End Sub
End Class

Dim d = New Derived
d.Proc()
#132 dai OverTaker fixed メソッド内でジェネリックなクラスが定義できない
Description

"StringToType内のジェネリクスクラス取得部分でpGenericClassがNULL"というエラーが発生する

Imports System.Collections.Generic

Class MyClass
Public
	Function Method() As Long
		Dim list As List<Object>
	End Function
End Class

同じファイルにListを定義すれば問題ないことから、ライブラリからリンクしているものが発生する模様。

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.