[Rprotobuf-commits] r583 - pkg/R

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Thu Dec 19 08:24:04 CET 2013


Author: murray
Date: 2013-12-19 08:24:04 +0100 (Thu, 19 Dec 2013)
New Revision: 583

Modified:
   pkg/R/completion.R
Log:
Add missing methods for $ completion.



Modified: pkg/R/completion.R
===================================================================
--- pkg/R/completion.R	2013-12-19 07:23:33 UTC (rev 582)
+++ pkg/R/completion.R	2013-12-19 07:24:04 UTC (rev 583)
@@ -93,7 +93,8 @@
 .DollarNames.FileDescriptor <- function(x, pattern = "" ){
 	names <- c(
 		.Call( "FileDescriptor__getMemberNames", x at pointer, PACKAGE = "RProtoBuf" ), 
-		"as.character()", "toString()", "name(" )
+		"as.character()", "toString()", "name(", "as.list()",
+                   "asMessage()", "package()")
 	grep( pattern, names, value = TRUE )
 }
 # }}}



More information about the Rprotobuf-commits mailing list