Lines Matching defs:test_A
97 const char *test_A = "test.my_number";
98 jerry_value_t result = jerry_eval ((const jerry_char_t *) test_A, strlen (test_A), 0);
105 const char *test_A = "test.my_str_sz === 'super_'";
106 jerry_value_t result = jerry_eval ((const jerry_char_t *) test_A, strlen (test_A), 0);
113 const char *test_A = "test.my_str === 'super_str'";
114 jerry_value_t result = jerry_eval ((const jerry_char_t *) test_A, strlen (test_A), 0);
121 const char *test_A = "test.my_bool";
122 jerry_value_t result = jerry_eval ((const jerry_char_t *) test_A, strlen (test_A), 0);
129 const char *test_A = "test.my_bool_false";
130 jerry_value_t result = jerry_eval ((const jerry_char_t *) test_A, strlen (test_A), 0);
137 const char *test_A = "test.my_non_value";
138 jerry_value_t result = jerry_eval ((const jerry_char_t *) test_A, strlen (test_A), 0);
144 const char *test_A = "test.hello(33, 42, 2);";
145 jerry_value_t result = jerry_eval ((const jerry_char_t *) test_A, strlen (test_A), 0);
152 const char *test_A = "test.hello();";
153 jerry_value_t result = jerry_eval ((const jerry_char_t *) test_A, strlen (test_A), 0);