diff --git a/demos/outline_objLitFn.html b/demos/outline_objLitFn.html
index 4b631ec..8340ec9 100644
--- a/demos/outline_objLitFn.html
+++ b/demos/outline_objLitFn.html
@@ -70,6 +70,42 @@
Demo with Outline Tern plugin
test_func: function() {
}
};
+
+
+var test_class1 = function() {
+ this.public_func = private_func;
+
+ function private_func() {
+
+ }
+};
+
+var test_class2;
+(function() {
+ test_class2 = function() {
+ function private_function() {
+ }
+ };
+
+ test_class2.prototype = {
+ proto_func: function() {
+ }
+ };
+})();
+
+var test_obj3;
+(function() {
+ var test_class3 = function() {
+ function private_function() {
+ }
+ }
+
+ test_class3.prototype = {
+ proto_func: function() {
+ }
+ };
+ test_obj3 = new test_class3();
+})();
diff --git a/demos/outline_proto.html b/demos/outline_proto.html
index c8518dc..7e12344 100644
--- a/demos/outline_proto.html
+++ b/demos/outline_proto.html
@@ -68,7 +68,7 @@ Demo with Outline Tern plugin
|
|