Respec: Missing things in IDL index

Created on 6 Feb 2018  路  5Comments  路  Source: w3c/respec

Given:

<pre class="idl">
interface BeforeInstallPromptEvent : Event {
    Promise<PromptResponseObject> prompt();
};

dictionary PromptResponseObject {
    AppBannerPromptOutcome userChoice;
};
</pre>

Expected the following to include both BeforeInstallPromptEvent AND PromptResponseObject:

<section id="idl-index"></section> 

Actual: PromptResponseObject object is missing.

bug

Most helpful comment

@shubhshrma, thanks for offering to help - some info below.

The IDL index is generated by:
src/core/webidl-index.js

And tests for this are in:
spec/core/idl-index-spec.js

If you haven't already, please check out the developer guide.

I suggest putting the test case above into the "examples/basic.html" file, and trying to debug it from there.

All 5 comments

Can I work on this @marcoscaceres ? I have setup the project and am ready to try to tackle some issues.

@marcoscaceres @saschanaz It would be great help if you people could possibly locate me to some files to change. I understand the issue after looking this page and this code. But being new I can't find the appropriate files to work on. Please help. Thanks.

@shubhshrma, thanks for offering to help - some info below.

The IDL index is generated by:
src/core/webidl-index.js

And tests for this are in:
spec/core/idl-index-spec.js

If you haven't already, please check out the developer guide.

I suggest putting the test case above into the "examples/basic.html" file, and trying to debug it from there.

@marcoscaceres The problem is that we are appending only the first child of each <pre class="idl"> and not all children. So, only first block of each is present in <section class="idl-index">. I have made some changes. Please see.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

noamr picture noamr  路  3Comments

marcoscaceres picture marcoscaceres  路  7Comments

andrea-perego picture andrea-perego  路  3Comments

marcoscaceres picture marcoscaceres  路  6Comments

saschanaz picture saschanaz  路  5Comments