[Rprotobuf-commits] r569 - in pkg: . R
noreply at r-forge.r-project.org
noreply at r-forge.r-project.org
Wed Dec 18 08:57:01 CET 2013
Author: murray
Date: 2013-12-18 08:57:00 +0100 (Wed, 18 Dec 2013)
New Revision: 569
Modified:
pkg/ChangeLog
pkg/R/completion.R
Log:
Add missing methods to Descriptor completion, and remove a duplicated item.
Modified: pkg/ChangeLog
===================================================================
--- pkg/ChangeLog 2013-12-18 07:54:33 UTC (rev 568)
+++ pkg/ChangeLog 2013-12-18 07:57:00 UTC (rev 569)
@@ -1,9 +1,10 @@
2013-12-17 Murray Stokely <murray at FreeBSD.org>
- * R/completion.R (.DollarNames.Message): Add missing "fetch(" to
- dollar completion list for Message objects.
- * vignettes/RProtoBuf/RProtoBuf.Rnw (subsection{messages}): Minor
- improvements, add a missing methods to Table 2.
+ * R/completion.R (.DollarNames.Message): Add missing methods to
+ dollar completion list for Message and Descriptor objects
+ * vignettes/RProtoBuf/RProtoBuf.Rnw (subsection{messages}): Add
+ missing methods to Table 2 (Messages) and add a table and new
+ sections of methods for Descriptor objects.
2013-12-16 Dirk Eddelbuettel <edd at debian.org>
Modified: pkg/R/completion.R
===================================================================
--- pkg/R/completion.R 2013-12-18 07:54:33 UTC (rev 568)
+++ pkg/R/completion.R 2013-12-18 07:57:00 UTC (rev 569)
@@ -30,7 +30,8 @@
names <- c(
.Call( "Descriptor__getMemberNames", x at pointer, PACKAGE = "RProtoBuf" ),
- "new(", "read(", "readASCII(", "fileDescriptor()", "name(", "fileDescriptor()",
+ "new(", "read(", "readASCII(", "fileDescriptor()", "name(",
+ "toString()", "as.character()",
"containing_type()", "field_count()", "nested_type_count()", "enum_type_count",
"field(", "nested_type(", "enum_type(" )
grep( pattern, names, value = TRUE )
More information about the Rprotobuf-commits
mailing list