diff options
author | gman@chromium.org <gman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-12-04 21:17:40 +0000 |
---|---|---|
committer | gman@chromium.org <gman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-12-04 21:17:40 +0000 |
commit | 738b62850325f4dd4db1f68672740e42d988b7b2 (patch) | |
tree | 564fae6933e68f35a7a26a4a0202ba0a7f609d2b /o3d/plugin/idl/buffer.idl | |
parent | e01761e82ee46cd775c191939ec789ce76bfb5f7 (diff) | |
download | chromium_src-738b62850325f4dd4db1f68672740e42d988b7b2.zip chromium_src-738b62850325f4dd4db1f68672740e42d988b7b2.tar.gz chromium_src-738b62850325f4dd4db1f68672740e42d988b7b2.tar.bz2 |
Fixes a bug in the docs generation for overloaded
functions.
The issue is that JavaScript has no concept of
overloaded functions. Nixysa was merging them
for compilation by the JSCompiler but it needs
to keep them separate for docs.
To fix the issue an option was added to nixysa
to rename overloaded functions with the suffix
xxxOVERLOAD<num>xxx. The docs generators
then remove the suffix where appropriate.
Review URL: http://codereview.chromium.org/462039
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33859 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'o3d/plugin/idl/buffer.idl')
-rw-r--r-- | o3d/plugin/idl/buffer.idl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/o3d/plugin/idl/buffer.idl b/o3d/plugin/idl/buffer.idl index 83a4c6a..37d25a2 100644 --- a/o3d/plugin/idl/buffer.idl +++ b/o3d/plugin/idl/buffer.idl @@ -77,6 +77,7 @@ class Buffer : NamedObject { Sets the values in the buffer given a RawData object. \param raw_data contains data to assign to the Buffer data itself. + \return True if operation was successful. %] bool Set(RawData raw_data); |