1// Tags should include: 2// functions 3// my_function 4// classes 5// RE 6// global variables 7// foo 8// 9 10// This should handle the escaped quote 11var RE={"bar":/foo\"/}; 12 13// This should also handle the escaped quote 14// A tag should be created for the global variable "foo". 15var foo="foo \" some other stuff"; 16 17// A tag should be created for this function "my_function". 18function my_function() { 19} 20