Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
steve02081504 committed Jan 2, 2024
1 parent 8835039 commit 401fa57
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/types/list_info_t.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import {

void_string
} from "../base/value_table.mjs";
import { to_string } from "../base/tools.mjs";
import {base_sstp_info_t,split_sstp_text} from "./base_sstp_info_t.mjs";

/**
Expand All @@ -31,7 +32,7 @@ class list_info_t extends base_sstp_info_t {
* @summary 这不是获取字符串报文的方法,如需获取字符串报文请使用{@link list_info_t.get text_content}
* @ignore
*/
/*@__PURE__*/toString() { return to_string(this.values); }
/*@__PURE__*/toString() { return /*@__INLINE__*/to_string(this.values); }
/**
* 获取字符串报文
* @returns {String} 字符串报文
Expand Down

0 comments on commit 401fa57

Please sign in to comment.