Brian Dunning's Error Code Reference

Lasso Error -9941

Illegal attempt to modify a frozen value or type

 

Comments

Andy   Andy, Digital Ink (Solutions) Ltd
Mar 17, 2005
Also if you are occasionally blind and stupid, like I was you will get this error if you use a semi colon after an entry inside an inline instead of a comma!
 
Brian Dunning   Brian Dunning, BrianDunning.com
Dec 13, 2004
I have received this error when intending to reference a Pair and happened to put parentheses around it:

('name' = 'value')

Lasso's parser sees this as an attempt to set the literal value 'name' with the value 'pair,' which can't work. Instead, to reference a Pair, lose the parens:

'name'='value'

Fletcher Sandbeck pointed this subtlety out to me. Thanks Fletcher.