Displaying 3 results from an estimated 3 matches for "doextends".
Did you mean:
doextend
2004 Jun 18
0
Problem with setValidity() or resetClass() or ... ?
...3") # as I expected
Class3Def <- getClassDef("Class3", where = topenv(parent.frame()))
## the following is called in setValidity() via resetClass()
## (further explanations, see below)
completeClassDefinition("Class3", Class3Def,
where = topenv(parent.frame()), doExtends = TRUE)
## 'Extends' includs only "Class2"
##
## would give the right result *in this case*
completeClassDefinition("Class3", Class3Def,
where = topenv(parent.frame()), doExtends = FALSE)
## (no call to completeExtends(), as doExtends = FALSE)
## probably no good...
2009 Apr 19
3
asterisk-1.6.0.9-x86_64: voicemail: Segmentation fault (core dumped)
Hello,
Information:
gcc -v: gcc version 4.3.3 (Debian 4.3.3-3)
os: Debian/Testing
Pulled latest release from asterisk site, compiled, installed it.
I have a barebones configuration:
$ ls -l asterisk
extensions.conf
modules.conf
sip.conf
users.conf
voicemail.conf
You can see them here:
http://home.comcast.net/~jpiszcz/20090418/extensions.conf
2011 May 30
1
Query super- and subclasses of a class: is there a better way than to use 'completeClassDefinition()'
..., I
re-read the respective section on the help page and wondered if I should
be more careful about using this function for this purpose as the page says:
"|completeClassDefinition: |Completes the definition of |Class|,
relative to the class definitions visible from environment |where|. If
|doExtends| is |TRUE|, complete the super- and sub-class information.
This function is called when a class is defined or re-defined."
So here are my questions:
1) Is it safe to call 'completeClassDef()' explicitly or can anything be
"overwritten" by this?
2) Is there a better way to...