
|
If you were logged in you would be able to see more operations.
|
|
|
Boo
Created: 25/Nov/04 03:30 PM
Updated: 08/Dec/04 04:57 PM
|
|
| Component/s: |
None
|
| Affects Version/s: |
0.5
|
| Fix Version/s: |
0.5
|
|
import System
class Point(ValueType):
public X as int
public Y as int
class Point3D:
public xy as Point
public Z as int
p = Point3D()
print p.xy.X
System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.TypeLoadException: Could not load type Point from assembly untitled, Version=0.0.0.0.
at UntitledModule.Main(String[] argv)
— End of inner exception stack trace —
at System.Reflection.RuntimeMethodInfo.InternalInvoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture, Boolean isBinderDefault, Assembly caller, Boolean verifyAccess)
at System.Reflection.RuntimeMethodInfo.InternalInvoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture, Boolean verifyAccess)
at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
at BooExplorer.BooEditor.Run() in I:\Boo\booTrunk\extras\boox\booxw\src\BooEditor.boo:line 221
|
|
Description
|
import System
class Point(ValueType):
public X as int
public Y as int
class Point3D:
public xy as Point
public Z as int
p = Point3D()
print p.xy.X
System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.TypeLoadException: Could not load type Point from assembly untitled, Version=0.0.0.0.
at UntitledModule.Main(String[] argv)
— End of inner exception stack trace —
at System.Reflection.RuntimeMethodInfo.InternalInvoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture, Boolean isBinderDefault, Assembly caller, Boolean verifyAccess)
at System.Reflection.RuntimeMethodInfo.InternalInvoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture, Boolean verifyAccess)
at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
at BooExplorer.BooEditor.Run() in I:\Boo\booTrunk\extras\boox\booxw\src\BooEditor.boo:line 221 |
Show » |
| There are no comments yet on this issue.
|
|