Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
8answers
6k views

How do I make private functions in a Perl module?

I am working on a little Perl module and for some reason I had the test driver script that was using my new module call one of the functions that I thought would be private, and it was successful. I ...
4
votes
2answers
215 views

Private functions in JavaScript

In a jQuery-based web application I have various script where multiple files might be included and I'm only using one of them at a time (I know not including all of them would be better, but I'm just ...
3
votes
1answer
304 views

define private function in a mathematica package

I'm not sure I got how to define private functions right. When I'm writing a package mathematica, I just do this: BeginPackage["myPackage`"] myPublicFunction::usage="myPublicFunction blahblahblah"; ...
2
votes
2answers
83 views

EUnit fails to test private functions

I'm writing EUnit tests for Erlang code. I have a source module: -module(prob_list). -export([intersection/2,union/2]). probability([], _Item) -> false; probability([{First,Probability}|Rest], ...
1
vote
2answers
488 views

Passing an array of data to a private function in CodeIgniter/PHP? [facepalm]

So I thought this should be easy, but, I'm n00bing out here and failing epicly (as they say on teh interwebz). So here's my code: function xy() { $array['var1'] = x; $array['var2'] = y; echo ...
0
votes
3answers
97 views

Can a variable call a Private function?

Say you are given the following UML class diagram: Can a variable of type Mystery invoke the function DoSomething()? I understand that an object (say Mystery X;) could call GetA() to access the ...
0
votes
5answers
538 views

Mocking problem, public function calling private function

I’m having a mocking problem. I know only public methods should be mocked. But what do I do when a private method is called in a public method, and this private method is getting data from a file? I ...