RhinoTrac
LassoSoft Ticket Tracking System
NOTE: If you are using Lasso Server 9.3 please Log your ticket directly via the LUX admin as this will give us more information about your issue.
Ticket #7993: Can't access givenBlock from thread methods
- Reported by:
- Eric Knibbe
- Date:
- 18 Sep, 2015
- Priority:
- minor
- Component:
- Lasso 9
- Version:
- 9.3
- Keywords:
- Platform:
A capture block passed to a method of a thread object is inaccessible. Some examples:
define checkgb => type {
public print => { return givenBlock->type }
}
checkgb->print => { }
returns "capture"
define checkgb => thread {
public print => { return givenBlock->type }
}
checkgb->print => { }
returns "decimal"
define checkgb => thread {
parent map
public print => { return givenBlock->type }
}
checkgb->print => { }
returns "void"
Please log in to your LassoSoft account to comment