[svn:parrot] r48497 - trunk/src/pmc
jkeenan at svn.parrot.org
jkeenan at svn.parrot.org
Sun Aug 15 01:18:29 UTC 2010
Author: jkeenan
Date: Sun Aug 15 01:18:28 2010
New Revision: 48497
URL: https://trac.parrot.org/parrot/changeset/48497
Log:
[codingstd] Insert POD 'item' so that documentor will know where to add
function documentation.
Modified:
trunk/src/pmc/callcontext.pmc
Modified: trunk/src/pmc/callcontext.pmc
==============================================================================
--- trunk/src/pmc/callcontext.pmc Sun Aug 15 01:16:18 2010 (r48496)
+++ trunk/src/pmc/callcontext.pmc Sun Aug 15 01:18:28 2010 (r48497)
@@ -152,6 +152,16 @@
/* Don't modify between HEADERIZER BEGIN / HEADERIZER END. Your changes will be lost. */
/* HEADERIZER END: static */
+/*
+
+=item C<static void ensure_positionals_storage(PARROT_INTERP, PMC *self, INTVAL size)>
+
+
+
+=cut
+
+*/
+
static void
ensure_positionals_storage(PARROT_INTERP, ARGIN(PMC *self), INTVAL size)
{
@@ -166,6 +176,17 @@
ensure_positionals_storage_ap(interp, self, size, allocated_positionals);
}
+/*
+
+=item C<static void ensure_positionals_storage_ap(
+ PARROT_INTERP, PMC *self, INTVAL size, INTVAL allocated_positionals)>
+
+
+
+=cut
+
+*/
+
static void
ensure_positionals_storage_ap(PARROT_INTERP,
ARGIN(PMC *self), INTVAL size, INTVAL allocated_positionals)
@@ -201,6 +222,16 @@
SETATTR_CallContext_positionals(interp, self, new_array);
}
+/*
+
+=item C<static Pcc_cell* get_cell_at(PARROT_INTERP, PMC *self, INTVAL key)>
+
+
+
+=cut
+
+*/
+
PARROT_CANNOT_RETURN_NULL
static Pcc_cell*
get_cell_at(PARROT_INTERP, ARGIN(PMC *self), INTVAL key)
@@ -212,6 +243,16 @@
return &cells[key];
}
+/*
+
+=item C<static INTVAL autobox_intval(PARROT_INTERP, const Pcc_cell *cell)>
+
+
+
+=cut
+
+*/
+
static INTVAL
autobox_intval(PARROT_INTERP, ARGIN(const Pcc_cell *cell))
{
@@ -235,6 +276,16 @@
return 0;
}
+/*
+
+=item C<static FLOATVAL autobox_floatval(PARROT_INTERP, const Pcc_cell *cell)>
+
+
+
+=cut
+
+*/
+
static FLOATVAL
autobox_floatval(PARROT_INTERP, ARGIN(const Pcc_cell *cell))
{
@@ -258,6 +309,16 @@
return 0.0;
}
+/*
+
+=item C<static STRING * autobox_string(PARROT_INTERP, const Pcc_cell *cell)>
+
+
+
+=cut
+
+*/
+
PARROT_CANNOT_RETURN_NULL
static STRING *
autobox_string(PARROT_INTERP, ARGIN(const Pcc_cell *cell))
@@ -282,6 +343,16 @@
return NULL;
}
+/*
+
+=item C<static PMC * autobox_pmc(PARROT_INTERP, Pcc_cell *cell, INTVAL type)>
+
+
+
+=cut
+
+*/
+
PARROT_CANNOT_RETURN_NULL
static PMC *
autobox_pmc(PARROT_INTERP, ARGIN(Pcc_cell *cell), INTVAL type)
@@ -312,6 +383,16 @@
return result;
}
+/*
+
+=item C<static Hash * get_hash(PARROT_INTERP, PMC *SELF)>
+
+
+
+=cut
+
+*/
+
PARROT_CANNOT_RETURN_NULL
static Hash *
get_hash(PARROT_INTERP, ARGIN(PMC *SELF))
@@ -334,6 +415,16 @@
return hash;
}
+/*
+
+=item C<static void mark_cell(PARROT_INTERP, Pcc_cell *c)>
+
+
+
+=cut
+
+*/
+
static void
mark_cell(PARROT_INTERP, ARGIN(Pcc_cell *c))
{
@@ -355,6 +446,16 @@
}
+/*
+
+=item C<static void mark_positionals(PARROT_INTERP, PMC *self)>
+
+
+
+=cut
+
+*/
+
static void
mark_positionals(PARROT_INTERP, ARGIN(PMC *self))
{
@@ -373,6 +474,16 @@
}
}
+/*
+
+=item C<static void mark_hash(PARROT_INTERP, Hash *h)>
+
+
+
+=cut
+
+*/
+
/* don't look now, but here goes encapsulation.... */
static void
mark_hash(PARROT_INTERP, ARGIN(Hash *h))
@@ -391,6 +502,16 @@
}
}
+/*
+
+=item C<static PMC * get_named_names(PARROT_INTERP, PMC *SELF)>
+
+
+
+=cut
+
+*/
+
PARROT_CAN_RETURN_NULL
static PMC *
get_named_names(PARROT_INTERP, ARGIN(PMC *SELF))
More information about the parrot-commits
mailing list